Skip to content

Commit f3234cc

Browse files
start new ft page
Co-authored-by: 4-Leafs-Code <[email protected]>
1 parent 368606c commit f3234cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+8479
-15331
lines changed

.gitignore

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
1+
# build output
2+
dist/
3+
.output/
24

35
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
10-
11-
# production
12-
/build
13-
14-
# misc
15-
.DS_Store
16-
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
6+
node_modules/
207

8+
# logs
219
npm-debug.log*
2210
yarn-debug.log*
2311
yarn-error.log*
12+
pnpm-debug.log*
13+
14+
15+
# environment variables
16+
.env
17+
.env.production
18+
19+
# macOS-specific files
20+
.DS_Store

README.md

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,50 @@
1-
# FearlessTech.github.io
2-
FearlessTech's GitHub Pages Site
1+
# Welcome to [Astro](https://astro.build)
32

4-
This is the repository for the FearlessTech Website. We have not started it yet, but I made the repo in case one of our contributors wanted to start working on it.
3+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
4+
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/s/github/withastro/astro/tree/latest/examples/basics)
5+
6+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
7+
8+
![basics](https://user-images.githubusercontent.com/4677417/186188965-73453154-fdec-4d6b-9c34-cb35c248ae5b.png)
9+
10+
11+
## 🚀 Project Structure
12+
13+
Inside of your Astro project, you'll see the following folders and files:
14+
15+
```
16+
/
17+
├── public/
18+
│ └── favicon.svg
19+
├── src/
20+
│ ├── components/
21+
│ │ └── Card.astro
22+
│ ├── layouts/
23+
│ │ └── Layout.astro
24+
│ └── pages/
25+
│ └── index.astro
26+
└── package.json
27+
```
28+
29+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
30+
31+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
32+
33+
Any static assets, like images, can be placed in the `public/` directory.
34+
35+
## 🧞 Commands
36+
37+
All commands are run from the root of the project, from a terminal:
38+
39+
| Command | Action |
40+
| :--------------------- | :------------------------------------------------- |
41+
| `npm install` | Installs dependencies |
42+
| `npm run dev` | Starts local dev server at `localhost:3000` |
43+
| `npm run build` | Build your production site to `./dist/` |
44+
| `npm run preview` | Preview your build locally, before deploying |
45+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
46+
| `npm run astro --help` | Get help using the Astro CLI |
47+
48+
## 👀 Want to learn more?
49+
50+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

astro.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { defineConfig } from 'astro/config';
2+
3+
// https://astro.build/config
4+
import react from "@astrojs/react";
5+
6+
// https://astro.build/config
7+
export default defineConfig({
8+
integrations: [react()]
9+
});

0 commit comments

Comments
 (0)