5 Commits

Author SHA1 Message Date
69bbb4cd24 Update src/app/page.tsx 2026-02-28 21:12:13 +00:00
79afc7eb9f Merge version_3 into main
Merge version_3 into main
2026-02-27 14:17:41 +00:00
e82a13fdd7 Merge version_3 into main
Merge version_3 into main
2026-02-27 14:15:37 +00:00
e001562656 Update src/app/page.tsx 2026-02-27 14:15:30 +00:00
b757c0a3d2 Update src/app/layout.tsx 2026-02-27 14:15:29 +00:00
2 changed files with 11 additions and 12 deletions

View File

@@ -1410,4 +1410,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout'; import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import FeatureCardTwentyTwo from '@/components/sections/feature/FeatureCardTwentyTwo'; import FeatureCardTwentyTwo from '@/components/sections/feature/FeatureCardTwentyTwo';
import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TeamCardSix from '@/components/sections/team/TeamCardSix';
@@ -21,7 +21,7 @@ export default function ComputerClubPage() {
borderRadius="pill" borderRadius="pill"
contentWidth="medium" contentWidth="medium"
sizing="largeSizeMediumTitles" sizing="largeSizeMediumTitles"
background="circleGradient" background="noise"
cardStyle="soft-shadow" cardStyle="soft-shadow"
primaryButtonStyle="shadow" primaryButtonStyle="shadow"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
@@ -31,10 +31,10 @@ export default function ComputerClubPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Computer Club" brandName="Computer Club"
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "#about" },
{ name: "Events", id: "events" }, { name: "Events", id: "#events" },
{ name: "Team", id: "team" }, { name: "Team", id: "#team" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "#contact" }
]} ]}
button={{ button={{
text: "Join Us", href: "#contact" text: "Join Us", href: "#contact"
@@ -43,17 +43,16 @@ export default function ComputerClubPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroLogo
title="Computer Club" logoText="Computer Club"
description="Empowering students through technology, innovation, and community collaboration" description="Empowering students through technology, innovation, and community collaboration"
background={{ variant: "sparkles-gradient" }}
buttons={[ buttons={[
{ text: "Get Involved", href: "#events" }, { text: "Get Involved", href: "#events" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/team-developers-doing-brainstorming-optimizing-code_482257-112972.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/team-developers-doing-brainstorming-optimizing-code_482257-112972.jpg?_wi=1"
imageAlt="Computer club technology community" imageAlt="Computer club technology community"
mediaAnimation="slide-up" showDimOverlay={true}
/> />
</div> </div>
@@ -293,4 +292,4 @@ export default function ComputerClubPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }