Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4a36668bb | |||
| 3207eb0be9 | |||
| 1bbfb437ee | |||
| b8908963e1 | |||
| 294c62f18c | |||
| f010828ced | |||
| 343ae83fa3 | |||
| 0248c966ac | |||
| 5c018611e9 | |||
| 231b3310a2 | |||
| 4670f8ad00 | |||
| d0a7ed99a1 | |||
| e627dbbcbc |
@@ -1,17 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Josefin_Sans } from "next/font/google";
|
import { IBM_Plex_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Roboto_Mono } 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 josefinSans = Josefin_Sans({
|
const ibmPlexSans = IBM_Plex_Sans({
|
||||||
variable: "--font-josefin-sans", subsets: ["latin"],
|
variable: "--font-ibm-plex-sans", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const robotoMono = Roboto_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-roboto-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -37,7 +37,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${josefinSans.variable} ${inter.variable} antialiased`}
|
className={`${ibmPlexSans.variable} ${robotoMono.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||||
@@ -43,26 +43,20 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<HeroSplit
|
||||||
logoText="CODECLUB"
|
title="Empower Your Tech Journey"
|
||||||
description="Welcome to the ultimate hub for computer enthusiasts, developers, and tech innovators. Connect, learn, and build amazing projects together."
|
description="Join a vibrant community of developers and tech innovators. Learn cutting-edge technologies, collaborate on exciting projects, and grow together with passionate people who share your vision."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
tag="Welcome to CodeClub"
|
||||||
|
tagIcon={Sparkles}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Join Today", href: "contact" },
|
{ text: "Join Today", href: "contact" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
slides={[
|
imageSrc="http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg"
|
||||||
{
|
imageAlt="Coding and programming"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg", imageAlt: "Coding and programming"
|
mediaAnimation="slide-up"
|
||||||
},
|
imagePosition="right"
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-winning-videogame_23-2149349984.jpg", imageAlt: "Tech community collaboration"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-caucasian-man-virtual-reality-vr-headset-is-presumably-gamer-hacker-cracking-code-into-secure-network-server-with-lines-code_146671-18941.jpg", imageAlt: "Innovation and technology"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
autoplayDelay={5000}
|
|
||||||
showDimOverlay={true}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -107,6 +101,8 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
|
cardClassName="group perspective cursor-pointer h-full"
|
||||||
|
containerClassName="[&_.card-inner]:group-hover:transition-transform [&_.card-inner]:group-hover:duration-500 [&_.card-inner]:group-hover:[transform-style:preserve-3d] [&_.card-inner]:group-hover:[transform:rotateY(180deg)]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -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), 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-josefin-sans), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #fafffb;;
|
/* --background: #010912;;
|
||||||
--card: #f7fffa;;
|
--card: #152840;;
|
||||||
--foreground: #001a0a;;
|
--foreground: #e6f0ff;;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #cee7ff;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--accent: #a8d9be;;
|
--accent: #3f5c79;;
|
||||||
--background-accent: #6bbf8e;; */
|
--background-accent: #004a93;; */
|
||||||
|
|
||||||
--background: #fafffb;;
|
--background: #010912;;
|
||||||
--card: #f7fffa;;
|
--card: #152840;;
|
||||||
--foreground: #001a0a;;
|
--foreground: #e6f0ff;;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #cee7ff;;
|
||||||
--primary-cta-text: #fafffb;;
|
--primary-cta-text: #fafffb;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--secondary-cta-text: #001a0a;;
|
--secondary-cta-text: #001a0a;;
|
||||||
--accent: #a8d9be;;
|
--accent: #3f5c79;;
|
||||||
--background-accent: #6bbf8e;;
|
--background-accent: #004a93;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user