Skip to content

Commit c793ff9

Browse files
committed
fixed readme and logo of writeups
1 parent b5778e3 commit c793ff9

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This repository is configured for automatic deployment to GitHub Pages:
2424

2525
2. **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

2929
3. **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

3636
1. Install dependencies:
37-
\`\`\`bash
37+
```bash
3838
npm install
39-
\`\`\`
39+
```
4040

4141
2. Run the development server:
42-
\`\`\`bash
42+
```bash
4343
npm run dev
44-
\`\`\`
44+
```
4545

4646
3. Open [http://localhost:3000](http://localhost:3000) in your browser
4747

4848
### Building for Production
4949

5050
To create a static export:
5151

52-
\`\`\`bash
52+
```bash
5353
npm run build
54-
\`\`\`
54+
```
5555

5656
This 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

8686
Edit `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

107107
Edit `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

123123
Edit `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

data/writeups.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ export const writeups = [
22
{
33
title: "PascalCTF Beginners 2025",
44
author: "Blaisone Team",
5-
date: "01/15/2025",
5+
date: "26/03/2025",
66
tags: ["beginner", "web", "crypto", "pwn"],
77
description:
88
"Complete writeup collection for PascalCTF Beginners 2025 - covering all categories with detailed explanations for newcomers",
9-
image: "/placeholder.svg?height=120&width=200",
9+
image: "/logo.svg?height=120&width=200",
1010
slug: "pascalctf-beginners-2025",
1111
},
1212
]

0 commit comments

Comments
 (0)