4 Commits

Author SHA1 Message Date
805146ea29 Update src/app/page.tsx 2026-01-13 13:22:08 +00:00
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
3 changed files with 19 additions and 19 deletions

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f4ef;; /* --background: #1a1a1a;;
--card: #dad6cd;; --card: #000000;;
--foreground: #2a2928;; --foreground: #ffffff;;
--primary-cta: #2a2928;; --primary-cta: #ff0000;;
--secondary-cta: #ecebea;; --secondary-cta: #1a1a1a;;
--accent: #ffffff;; --accent: #ff0000;;
--background-accent: #ffffff;; */ --background-accent: #330000;; */
--background: #f5f4ef;; --background: #1a1a1a;;
--card: #dad6cd;; --card: #000000;;
--foreground: #2a2928;; --foreground: #ffffff;;
--primary-cta: #2a2928;; --primary-cta: #ff0000;;
--secondary-cta: #ecebea;; --secondary-cta: #1a1a1a;;
--accent: #ffffff;; --accent: #ff0000;;
--background-accent: #ffffff;; --background-accent: #330000;;
/* 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);

View File

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

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -31,7 +31,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
brandName="Pes Coder" brandName="Pes Coder"
navItems={[ navItems={{
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Courses", id: "courses" }, { name: "Courses", id: "courses" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
@@ -46,7 +46,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="Pes Coder" logoText="Pesss Coder"
description="Master coding from fundamentals to advanced development. Industry-expert instructors, hands-on projects, and career-ready skills." description="Master coding from fundamentals to advanced development. Industry-expert instructors, hands-on projects, and career-ready skills."
imageSrc="https://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg" imageSrc="https://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg"
imageAlt="Coding classroom with students learning programming" imageAlt="Coding classroom with students learning programming"
@@ -301,4 +301,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }