@@ -24,7 +24,7 @@ This repository is configured for automatic deployment to GitHub Pages:
2424
25252 . ** Automatic Deployment** :
2626 - Every push to the ` main ` branch triggers a deployment
27- - The site will be available at ` https://[username] .github.io/[repository-name] `
27+ - The site will be available at ` https://pascalctf .github.io/ `
2828
29293 . ** Manual Deployment** :
3030 - Go to the "Actions" tab in your repository
@@ -34,30 +34,30 @@ This repository is configured for automatic deployment to GitHub Pages:
3434### Local Development
3535
36361 . Install dependencies:
37- \`\`\ ` bash
37+ `` `bash
3838 npm install
39- \`\`\ `
39+ `` `
4040
41412 . Run the development server:
42- \`\`\ ` bash
42+ `` `bash
4343 npm run dev
44- \`\`\ `
44+ `` `
4545
46463 . Open [ http://localhost:3000 ] ( http://localhost:3000 ) in your browser
4747
4848### Building for Production
4949
5050To create a static export:
5151
52- \`\`\ ` bash
52+ `` `bash
5353npm run build
54- \`\`\ `
54+ `` `
5555
5656This will generate a static site in the ` out ` directory.
5757
5858## Project Structure
5959
60- \`\`\ `
60+ `` `
6161├── .github/workflows/
6262│ └── deploy.yml # GitHub Actions deployment workflow
6363├── app/
@@ -77,15 +77,15 @@ This will generate a static site in the `out` directory.
7777│ ├── sponsors.ts # Sponsors data
7878│ └── writeups.ts # Writeups data
7979└── next.config.mjs # Next.js configuration with static export
80- \`\`\ `
80+ `` `
8181
8282## Content Management
8383
8484### Adding Team Members
8585
8686Edit ` data/members.ts ` to add new team members:
8787
88- \`\`\ ` typescript
88+ `` `typescript
8989{
9090 name : " New Member" ,
9191 role : " member" , // or "admin"
@@ -100,13 +100,13 @@ Edit `data/members.ts` to add new team members:
100100 discord : " member#1234"
101101 }
102102}
103- \`\`\ `
103+ `` `
104104
105105### Adding Sponsors
106106
107107Edit ` data/sponsors.ts ` to add new sponsors:
108108
109- \`\`\ ` typescript
109+ `` `typescript
110110{
111111 name : " Sponsor Name" ,
112112 logo : " /path/to/logo.png" ,
@@ -116,13 +116,13 @@ Edit `data/sponsors.ts` to add new sponsors:
116116 linkedin : " https://linkedin.com/company/sponsor"
117117 }
118118}
119- \`\`\ `
119+ `` `
120120
121121### Adding Writeups
122122
123123Edit ` data/writeups.ts ` to add new writeups:
124124
125- \`\`\ ` typescript
125+ `` `typescript
126126{
127127 title : " Challenge Name - Competition" ,
128128 author : " Author Name" ,
@@ -132,7 +132,7 @@ Edit `data/writeups.ts` to add new writeups:
132132 image : " /path/to/preview.jpg" ,
133133 slug : " url-friendly-slug"
134134}
135- \`\`\ `
135+ `` `
136136
137137## Theme System
138138
0 commit comments