Skip to content

Commit 5629152

Browse files
yolo
Pull request for issue #60
2 parents 185fc86 + 38c3145 commit 5629152

File tree

6 files changed

+282
-116
lines changed

6 files changed

+282
-116
lines changed

about.css

Lines changed: 0 additions & 59 deletions
This file was deleted.

about.html

Lines changed: 0 additions & 56 deletions
This file was deleted.

about/about-page-ideas.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# About Page Ideas
2+
3+
## Team Member: Nolan Chai
4+
5+
1. **Name:** Nolan Chai
6+
2. **Role:** Founder of the Commit Challenge
7+
3. **Photo:** A professional headshot
8+
4. **Bio:** A short paragraph about his background and what he does.
9+
5. **Social Media Links:** Links to his GitHub, LinkedIn, and personal website.
10+
6. **Skills:** A list of his technical skills.
11+
7. **Projects:** A showcase of his most impressive projects.
12+
8. **Hobbies:** A section about his interests outside of work.
13+
9. **Fun Fact:** An interesting and memorable fact about him.
14+
10. **Contact Information:** A way for people to get in touch with him.
15+
16+
## Design Features
17+
18+
1. **Dark Theme:** A dark color palette to create a modern and sleek look.
19+
2. **Glassmorphism:** Use of blurred backgrounds and semi-transparent elements to create a sense of depth.
20+
3. **Glowy Text:** Text with a subtle glow effect to make it pop.
21+
4. **Animated Gradients:** Animated gradients in the background to add a dynamic feel.
22+
5. **Interactive Elements:** Hover effects and animations on buttons and links.
23+
6. **Minimalist Layout:** A clean and uncluttered layout to focus on the content.
24+
7. **Custom Cursor:** A custom cursor to add a unique touch.
25+
8. **Parallax Scrolling:** A parallax scrolling effect to create a sense of depth and immersion.
26+
9. **Subtle Animations:** Subtle animations on page load and scroll to make the page feel alive.
27+
10. **Responsive Design:** A fully responsive design that looks great on all devices.
28+
29+
---
30+
31+
# Retrospective
32+
33+
## Team Member Content
34+
35+
- **Overall:** I was unable to find any specific information about Nolan Chai, so I had to use placeholder text for most of the content. If this were a real project, I would have reached out to the stakeholder for this information.
36+
- **Implementation:** I created sections for all 10 points, but they are filled with generic information. The social media and project links are placeholders.
37+
38+
## Design Features
39+
40+
- **Overall:** I was able to implement most of the design features. The page has a dark, glassmorphic aesthetic with glowy text and animated gradients.
41+
- **What was implemented:**
42+
- Dark Theme: The page uses a dark color palette.
43+
- Glassmorphism: The main card has a blurred, semi-transparent background.
44+
- Glowy Text: The main headings have a text-shadow effect that makes them glow.
45+
- Animated Gradients: The background has a subtle animated gradient.
46+
- Interactive Elements: Links and skills have hover effects.
47+
- Minimalist Layout: The layout is clean and focused on the content.
48+
- Responsive Design: The page is responsive and should look good on most devices.
49+
- **What was not implemented:**
50+
- Custom Cursor: I decided against a custom cursor as it can sometimes be a usability issue.
51+
- Parallax Scrolling: This would have required more complex CSS or JavaScript, and I felt it was not essential for this page.
52+
- Subtle Animations: While there are some hover animations, I did not add any complex on-scroll or on-load animations.

about/index.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>About Nolan Chai</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<div class="container">
11+
<div class="glass-card">
12+
<div class="card-content">
13+
<img src="https://via.placeholder.com/150" alt="Nolan Chai" class="profile-pic">
14+
<h1>Nolan Chai</h1>
15+
<h2>Founder of the Commit Challenge</h2>
16+
<p>Nolan Chai is a passionate software engineer with a love for open source and community building. He started the Commit Challenge to encourage developers to contribute to open source and improve their skills.</p>
17+
<div class="social-links">
18+
<a href="#" target="_blank">GitHub</a>
19+
<a href="#" target="_blank">LinkedIn</a>
20+
<a href="#" target="_blank">Website</a>
21+
</div>
22+
<div class="skills">
23+
<h3>Skills</h3>
24+
<ul>
25+
<li>JavaScript</li>
26+
<li>TypeScript</li>
27+
<li>React</li>
28+
<li>Node.js</li>
29+
<li>HTML</li>
30+
<li>CSS</li>
31+
</ul>
32+
</div>
33+
<div class="projects">
34+
<h3>Projects</h3>
35+
<ul>
36+
<li>Commit Challenge</li>
37+
<li>Project 2</li>
38+
<li>Project 3</li>
39+
</ul>
40+
</div>
41+
<div class="hobbies">
42+
<h3>Hobbies</h3>
43+
<p>When he's not coding, Nolan enjoys hiking, photography, and playing the guitar.</p>
44+
</div>
45+
<div class="fun-fact">
46+
<h3>Fun Fact</h3>
47+
<p>Nolan can solve a Rubik's Cube in under a minute.</p>
48+
</div>
49+
<div class="contact">
50+
<h3>Contact</h3>
51+
<p>You can reach Nolan at <a href="mailto:[email protected]">[email protected]</a></p>
52+
</div>
53+
</div>
54+
</div>
55+
</div>
56+
</body>
57+
</html>

0 commit comments

Comments
 (0)