4 Commits

Author SHA1 Message Date
9f29f63028 Update src/app/page.tsx 2026-01-13 13:19:16 +00:00
d0faeb0059 Update src/app/layout.tsx 2026-01-13 13:19:15 +00:00
d7c42d650e Update src/app/globals.css 2026-01-13 13:19:14 +00:00
76923ca65c Update src/app/page.tsx 2026-01-13 13:17:56 +00:00
3 changed files with 18 additions and 18 deletions

View File

@@ -4,21 +4,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f4ef;;
--card: #dad6cd;;
--foreground: #2a2928;;
--primary-cta: #2a2928;;
--secondary-cta: #ecebea;;
--accent: #ffffff;;
--background-accent: #ffffff;; */
/* --background: #1a1a1a;;
--card: #000000;;
--foreground: #ffffff;;
--primary-cta: #ff0000;;
--secondary-cta: #1a1a1a;;
--accent: #ff0000;;
--background-accent: #330000;; */
--background: #f5f4ef;;
--card: #dad6cd;;
--foreground: #2a2928;;
--primary-cta: #2a2928;;
--secondary-cta: #ecebea;;
--accent: #ffffff;;
--background-accent: #ffffff;;
--background: #1a1a1a;;
--card: #000000;;
--foreground: #ffffff;;
--primary-cta: #ff0000;;
--secondary-cta: #1a1a1a;;
--accent: #ff0000;;
--background-accent: #330000;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

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

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -60,7 +60,7 @@ export default function LandingPage() {
tagIcon={Lightbulb}
title="Empowering the next generation of coders through practical, industry-focused education."
description="Pes Coder Academy"
subdescription="Founded 2015 · 5,000+ Students Trained"
subdescription="Founded 2020 · 5,000+ Students Trained"
icon={Code2}
imageSrc="https://img.b2bpic.net/free-photo/college-students-different-ethnicities-cramming_23-2149891341.jpg"
imageAlt="Educational team collaboration"
@@ -301,4 +301,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}