Skip to content

Commit 741dcff

Browse files
committed
docs: Updates README.md
1 parent 6ef0fc0 commit 741dcff

File tree

1 file changed

+23
-9
lines changed

1 file changed

+23
-9
lines changed

README.md

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,32 @@ npm run dev
3232
## Project Structure
3333

3434
```
35-
├── app/ # Next.js App Router pages
36-
├── components/ # Reusable React components
37-
├── content/ # JSON data files for website content
38-
├── lib/ # Utility functions and configurations
39-
├── public/ # Static assets
40-
├── package.json # Project dependencies and scripts
41-
├── tailwind.config.js # Tailwind CSS configuration
42-
└── postcss.config.js # PostCSS configuration
35+
amFOSS.in/
36+
├── app/ # Next.js App Router pages
37+
│ ├── (root)/ # Main route group
38+
│ │ ├── (home)/ # Home page
39+
│ │ ├── about/ # About page
40+
│ │ ├── story/ # Story page
41+
│ │ ├── team/ # Team page
42+
│ │ └── contact/ # Contact page
43+
│ ├── layout.jsx # Root layout
44+
│ └── globals.css # Global styles
45+
├── components/ # Reusable React components
46+
│ ├── ui/ # UI components
47+
│ ├── shared/ # Shared components
48+
│ └── [feature]/ # Feature-specific components
49+
├── content/ # JSON data files
50+
│ ├── members.json # Team member data
51+
│ ├── about.json # About page content
52+
│ └── [other].json # Other content files
53+
├── public/ # Static assets
54+
└── package.json # Dependencies and scripts
4355
```
4456

45-
The content for different sections is managed through JSON files in the `content/`
57+
## Content Management
58+
The site uses a JSON-based content management system. All textual content, member information, and achievements are stored in JSON files under the `content/` directory. This allows content updates without code modifications
4659

60+
.
4761
## Contributing
4862

4963
We welcome contributions! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.

0 commit comments

Comments
 (0)