31 Commits

Author SHA1 Message Date
2d798c8f50 Update src/app/page.tsx 2026-03-01 17:26:20 +00:00
7bcd3096f0 Update src/app/page.tsx 2026-03-01 17:25:36 +00:00
c3a0c3327f Switch to version 8: modified src/app/page.tsx 2026-03-01 17:24:11 +00:00
30a783f84b Merge version_9 into main
Merge version_9 into main
2026-03-01 17:14:11 +00:00
3c567d98f6 Update src/app/page.tsx 2026-03-01 17:14:07 +00:00
94a36f1107 Merge version_9 into main
Merge version_9 into main
2026-03-01 17:13:27 +00:00
12070ae376 Update src/app/page.tsx 2026-03-01 17:13:22 +00:00
ca1d7ca0a6 Merge version_8 into main
Merge version_8 into main
2026-03-01 17:09:09 +00:00
d3e0ff7bdf Update src/app/page.tsx 2026-03-01 17:09:05 +00:00
1d35800e51 Merge version_8 into main
Merge version_8 into main
2026-03-01 17:08:19 +00:00
90f30dd0bf Update src/app/page.tsx 2026-03-01 17:08:15 +00:00
e4b521c4bb Merge version_7 into main
Merge version_7 into main
2026-03-01 16:59:58 +00:00
6df58fe593 Update src/app/page.tsx 2026-03-01 16:59:54 +00:00
a1690968dc Merge version_6 into main
Merge version_6 into main
2026-03-01 16:48:37 +00:00
b2f3b7effe Update src/app/page.tsx 2026-03-01 16:48:33 +00:00
18445fd605 Merge version_6 into main
Merge version_6 into main
2026-03-01 16:46:37 +00:00
a8f9538631 Update src/app/page.tsx 2026-03-01 16:46:33 +00:00
41dc6603a0 Update src/app/layout.tsx 2026-03-01 16:46:32 +00:00
01b3953ae2 Merge version_5 into main
Merge version_5 into main
2026-03-01 16:32:29 +00:00
62837f1ef9 Update src/app/styles/variables.css 2026-03-01 16:32:25 +00:00
8b7bd43da2 Update src/app/page.tsx 2026-03-01 16:32:24 +00:00
2100dfcd74 Update src/app/layout.tsx 2026-03-01 16:32:23 +00:00
20a41c06d3 Merge version_4 into main
Merge version_4 into main
2026-03-01 16:19:28 +00:00
95d3c1af0f Update src/app/styles/base.css 2026-03-01 16:19:24 +00:00
efc39f0539 Update src/app/layout.tsx 2026-03-01 16:19:23 +00:00
bce3805ae2 Merge version_3 into main
Merge version_3 into main
2026-03-01 16:16:04 +00:00
5ae66c0b24 Update src/app/page.tsx 2026-03-01 16:16:00 +00:00
b1d8567eb1 Update src/app/layout.tsx 2026-03-01 16:15:59 +00:00
33a545a17f Merge version_2 into main
Merge version_2 into main
2026-03-01 16:13:05 +00:00
452706960a Merge version_2 into main
Merge version_2 into main
2026-03-01 16:12:12 +00:00
f36ab44f3c Merge version_2 into main
Merge version_2 into main
2026-03-01 16:10:50 +00:00
4 changed files with 77 additions and 56 deletions

View File

@@ -1,12 +1,12 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google"; import { IBM_Plex_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const interTight = Inter_Tight({ const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-inter-tight", subsets: ["latin"], variable: "--font-ibm-plex-sans", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], weight: ["100", "200", "300", "400", "500", "600", "700"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -28,7 +28,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${interTight.variable} antialiased`} className={`${ibmPlexSans.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
@@ -32,6 +32,7 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Features", id: "features" }, { name: "Features", id: "features" },
{ name: "Products", id: "products" },
{ name: "Team", id: "team" }, { name: "Team", id: "team" },
{ name: "Join Us", id: "contact" }, { name: "Join Us", id: "contact" },
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "faq" }
@@ -40,29 +41,19 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDualMedia <HeroLogoBillboard
title="Connect. Code. Create. Together." logoText="Connect. Code. Create."
description="Join our thriving computer club where students collaborate on innovative projects, sharpen their coding skills, and build lasting connections with fellow tech enthusiasts." description="Join our thriving computer club where students collaborate on innovative projects, sharpen their coding skills, and build lasting connections with fellow tech enthusiasts."
tag="Welcome to CompClub"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
buttons={[ buttons={[
{ text: "Join Our Club", href: "#contact" }, { text: "Join Our Club", href: "#contact" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
mediaItems={[ background={{ variant: "sparkles-gradient" }}
{ imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80&_wi=1"
imageSrc: "http://img.b2bpic.net/free-photo/binary-code-digits-technology-software-concept_53876-120040.jpg", imageAlt: "Computer workstation with development setup" imageAlt="Team collaborating on innovative tech projects"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-it-professional-using-tablet-building-ai-algorithms_482257-92639.jpg", imageAlt: "Collaborative coding session"
}
]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
rating={5} frameStyle="card"
ratingText="Trusted by 200+ members"
/> />
</div> </div>
@@ -77,7 +68,7 @@ export default function LandingPage() {
{ value: "200+", title: "Active Members" }, { value: "200+", title: "Active Members" },
{ value: "50+", title: "Projects Completed" } { value: "50+", title: "Projects Completed" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/sales-analysis_1098-14925.jpg?_wi=1" imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80&_wi=2"
imageAlt="Team collaborating on coding project" imageAlt="Team collaborating on coding project"
mediaAnimation="slide-up" mediaAnimation="slide-up"
metricsAnimation="slide-up" metricsAnimation="slide-up"
@@ -96,19 +87,19 @@ export default function LandingPage() {
{ {
id: 1, id: 1,
title: "Weekly Coding Workshops", description: "Learn from industry professionals through hands-on workshops covering web development, mobile apps, data science, and more.", phoneOne: { title: "Weekly Coding Workshops", description: "Learn from industry professionals through hands-on workshops covering web development, mobile apps, data science, and more.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/typing-keyboard-business-people-manager-working-their-new-project-classroom_146671-16320.jpg?_wi=1" imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&q=80&_wi=1"
}, },
phoneTwo: { phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/sales-analysis_1098-14925.jpg?_wi=2" imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80&_wi=3"
} }
}, },
{ {
id: 2, id: 2,
title: "Hackathons & Competitions", description: "Compete with peers in exciting hackathons, coding challenges, and tech competitions. Win prizes and showcase your skills.", phoneOne: { title: "Hackathons & Competitions", description: "Compete with peers in exciting hackathons, coding challenges, and tech competitions. Win prizes and showcase your skills.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/typing-keyboard-business-people-manager-working-their-new-project-classroom_146671-16320.jpg?_wi=2" imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&q=80&_wi=2"
}, },
phoneTwo: { phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/sales-analysis_1098-14925.jpg?_wi=3" imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80&_wi=4"
} }
} }
]} ]}
@@ -123,6 +114,35 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="products" data-section="products">
<div className="py-16">
<h2 className="text-3xl font-bold text-center mb-4">Our Product Offerings</h2>
<p className="text-center mb-12">Explore the tools and resources we've built for our community</p>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-6xl mx-auto px-6">
<div className="bg-white rounded-lg shadow-md p-6">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&q=80" alt="CompClub Platform dashboard" className="w-full h-48 object-cover rounded mb-4" />
<h3 className="text-xl font-semibold mb-2">CompClub Platform</h3>
<p className="text-lg font-bold text-green-600">Free</p>
</div>
<div className="bg-white rounded-lg shadow-md p-6">
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=400&q=80" alt="Code Learning Kit" className="w-full h-48 object-cover rounded mb-4" />
<h3 className="text-xl font-semibold mb-2">Code Learning Kit</h3>
<p className="text-lg font-bold text-green-600">$49</p>
</div>
<div className="bg-white rounded-lg shadow-md p-6">
<img src="https://images.unsplash.com/photo-1633356122544-f134324ef6db?w=400&q=80" alt="Hackathon Toolkit" className="w-full h-48 object-cover rounded mb-4" />
<h3 className="text-xl font-semibold mb-2">Hackathon Toolkit</h3>
<p className="text-lg font-bold text-green-600">$29</p>
</div>
<div className="bg-white rounded-lg shadow-md p-6">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&q=80" alt="Mentorship Program" className="w-full h-48 object-cover rounded mb-4" />
<h3 className="text-xl font-semibold mb-2">Mentorship Program</h3>
<p className="text-lg font-bold text-green-600">$99</p>
</div>
</div>
</div>
</div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardSeven <MetricCardSeven
title="Our Impact" title="Our Impact"
@@ -167,25 +187,25 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
members={[ members={[
{ {
id: "1", name: "Alex Chen", role: "Club President", description: "Full-stack developer passionate about mentoring. Leads strategic initiatives and oversees all club operations.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=1", imageAlt: "Alex Chen, Club President", socialLinks: [ id: "1", name: "Alex Chen", role: "Club President", description: "Full-stack developer passionate about mentoring. Leads strategic initiatives and oversees all club operations.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&q=80&_wi=1", imageAlt: "Alex Chen, Club President", socialLinks: [
{ icon: Github, url: "https://github.com" }, { icon: Github, url: "https://github.com" },
{ icon: Linkedin, url: "https://linkedin.com" } { icon: Linkedin, url: "https://linkedin.com" }
] ]
}, },
{ {
id: "2", name: "Maya Patel", role: "Vice President", description: "Data science enthusiast focused on community engagement. Organizes workshops and social events.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=2", imageAlt: "Maya Patel, Vice President", socialLinks: [ id: "2", name: "Maya Patel", role: "Vice President", description: "Data science enthusiast focused on community engagement. Organizes workshops and social events.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&q=80&_wi=1", imageAlt: "Maya Patel, Vice President", socialLinks: [
{ icon: Github, url: "https://github.com" }, { icon: Github, url: "https://github.com" },
{ icon: Twitter, url: "https://twitter.com" } { icon: Twitter, url: "https://twitter.com" }
] ]
}, },
{ {
id: "3", name: "Jordan Lee", role: "Event Coordinator", description: "Creative problem-solver organizing hackathons and competitions. Ensures memorable experiences for all members.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=3", imageAlt: "Jordan Lee, Event Coordinator", socialLinks: [ id: "3", name: "Jordan Lee", role: "Event Coordinator", description: "Creative problem-solver organizing hackathons and competitions. Ensures memorable experiences for all members.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&q=80&_wi=2", imageAlt: "Jordan Lee, Event Coordinator", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }, { icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" } { icon: Globe, url: "https://example.com" }
] ]
}, },
{ {
id: "4", name: "Sam Torres", role: "Tech Lead", description: "Backend expert driving our technical infrastructure. Mentors developers and manages projects.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=4", imageAlt: "Sam Torres, Tech Lead", socialLinks: [ id: "4", name: "Sam Torres", role: "Tech Lead", description: "Backend expert driving our technical infrastructure. Mentors developers and manages projects.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&q=80&_wi=2", imageAlt: "Sam Torres, Tech Lead", socialLinks: [
{ icon: Github, url: "https://github.com" }, { icon: Github, url: "https://github.com" },
{ icon: Linkedin, url: "https://linkedin.com" } { icon: Linkedin, url: "https://linkedin.com" }
] ]
@@ -211,22 +231,22 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Johnson", handle: "@sarah_codes", testimonial: "Joining the computer club transformed my coding skills. The mentorship and collaborative projects gave me real-world experience I couldn't get elsewhere.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=1", imageAlt: "Sarah Johnson" id: "1", name: "Sarah Johnson", handle: "@sarah_codes", testimonial: "Joining the computer club transformed my coding skills. The mentorship and collaborative projects gave me real-world experience I couldn't get elsewhere.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&q=80&_wi=1", imageAlt: "Sarah Johnson"
}, },
{ {
id: "2", name: "Michael Rodriguez", handle: "@mrodriguez_dev", testimonial: "The hackathons organized by this club are incredible. I've built my portfolio, made lasting friendships, and gained confidence in my abilities.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=2", imageAlt: "Michael Rodriguez" id: "2", name: "Michael Rodriguez", handle: "@mrodriguez_dev", testimonial: "The hackathons organized by this club are incredible. I've built my portfolio, made lasting friendships, and gained confidence in my abilities.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80&_wi=1", imageAlt: "Michael Rodriguez"
}, },
{ {
id: "3", name: "Emily Wang", handle: "@emily_codes", testimonial: "As someone new to programming, the welcoming community and diverse skill levels made it easy to learn. The workshops are top-notch!", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=3", imageAlt: "Emily Wang" id: "3", name: "Emily Wang", handle: "@emily_codes", testimonial: "As someone new to programming, the welcoming community and diverse skill levels made it easy to learn. The workshops are top-notch!", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&q=80&_wi=2", imageAlt: "Emily Wang"
}, },
{ {
id: "4", name: "David Kim", handle: "@davidkim_tech", testimonial: "The networking opportunities at club events led to internship offers. This community opens doors and builds connections that last.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=4", imageAlt: "David Kim" id: "4", name: "David Kim", handle: "@davidkim_tech", testimonial: "The networking opportunities at club events led to internship offers. This community opens doors and builds connections that last.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80&_wi=2", imageAlt: "David Kim"
}, },
{ {
id: "5", name: "Jessica Lopez", handle: "@jess_develops", testimonial: "Best decision I made was joining CompClub. The supportive environment and quality projects have accelerated my career growth significantly.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=5", imageAlt: "Jessica Lopez" id: "5", name: "Jessica Lopez", handle: "@jess_develops", testimonial: "Best decision I made was joining CompClub. The supportive environment and quality projects have accelerated my career growth significantly.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&q=80&_wi=3", imageAlt: "Jessica Lopez"
}, },
{ {
id: "6", name: "Alex Thompson", handle: "@alexthompson99", testimonial: "Outstanding club with passionate members and leaders. We celebrate wins together, learn from failures, and always push each other to be better.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=6", imageAlt: "Alex Thompson" id: "6", name: "Alex Thompson", handle: "@alexthompson99", testimonial: "Outstanding club with passionate members and leaders. We celebrate wins together, learn from failures, and always push each other to be better.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80&_wi=3", imageAlt: "Alex Thompson"
} }
]} ]}
speed={40} speed={40}
@@ -275,7 +295,8 @@ export default function LandingPage() {
items: [ items: [
{ label: "About", href: "#about" }, { label: "About", href: "#about" },
{ label: "Team", href: "#team" }, { label: "Team", href: "#team" },
{ label: "Features", href: "#features" } { label: "Features", href: "#features" },
{ label: "Products", href: "#products" }
] ]
}, },
{ {

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-ibm-plex-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-ibm-plex-sans), sans-serif;
} }

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #ffee00;;;; /* --background: #0f1419;;;;
--card: #ff0900;;;; --card: #1a202c;;;;
--foreground: #00fff4;;;; --foreground: #e0f7ff;;;;
--primary-cta: #003362;;;; --primary-cta: #00d9ff;;;;
--secondary-cta: #a9ffab;;;; --secondary-cta: #2d3748;;;;
--accent: #ff0000;;;; --accent: #ff006e;;;;
--background-accent: #239400;;;; */ --background-accent: #00d9ff;;;; */
--background: #ffee00;;;; --background: #0f1419;;;;
--card: #ff0900;;;; --card: #1a202c;;;;
--foreground: #00fff4;;;; --foreground: #e0f7ff;;;;
--primary-cta: #003362;;;; --primary-cta: #00d9ff;;;;
--primary-cta-text: #ff00ff;;;; --primary-cta-text: #ff00ff;;;;
--secondary-cta: #a9ffab;;;; --secondary-cta: #2d3748;;;;
--secondary-cta-text: #ff9100;;;; --secondary-cta-text: #ff9100;;;;
--accent: #ff0000;;;; --accent: #ff006e;;;;
--background-accent: #239400;;;; --background-accent: #00d9ff;;;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);