From 204487f233a4b326a93fba4158bb539b7b9d8179 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Fri, 26 Dec 2025 16:39:20 +0000 Subject: [PATCH 1/2] Update src/app/globals.css --- src/app/globals.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 80e6c8a..f6cb1e6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -6,10 +6,10 @@ --background: #ffffff; --card: #fcfcfc; - --foreground: #120006e6; - --primary-cta: #e63946; + --foreground: #000000e6; + --primary-cta: #ff0000; --secondary-cta: #ffffff; - --accent: #e2e2e2; + --accent: #bebebe; --background-accent: #c4c4c4; /* text sizing - set by ThemeProvider */ -- 2.49.1 From 4ab0b387c0d948fa70ba898175c1f1fd95e10547 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Fri, 26 Dec 2025 16:39:21 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 471 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 340 insertions(+), 131 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8774687..8645c48 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,17 @@ -"use client"; +"use client" import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; +import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars'; +import TagMediaSplitAbout from '@/components/sections/about/TagMediaSplitAbout'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Sparkles, Zap, Award, Twitter, Linkedin, Github } from "lucide-react"; export default function LandingPage() { return ( @@ -16,136 +27,334 @@ export default function LandingPage() { secondaryButtonStyle="radial-glow" headingFontWeight="extrabold" > -
-
-
-

Code with me

-

- Learn Web Development & Programming from Industry Experts -

-

- Join 2,500+ students learning coding from industry experts. Web development, React, Full Stack courses with 1-on-1 mentorship. -

- -
- -
-
-

Web Development Bootcamp

-

- Start with HTML, CSS, and JavaScript. Build responsive websites and understand the fundamentals. -

-

$299

-
- -
-

React Mastery Course

-

- Master React, Node.js, and databases. Build full-stack applications ready for production. -

-

$249

-
- -
-

Full Stack Development

-

- Learn server-side programming, API development, and database architecture for scalable applications. -

-

$399

-
-
- -
-

Simple, Transparent Pricing

-
-
-

Starter

-

$49/month

-

Perfect for beginners

-
    -
  • • Access to 3 core courses
  • -
  • • Community forum access
  • -
  • • Email support
  • -
  • • Certificate of completion
  • -
- -
- -
-

Professional

-

$99/month

-

Best for serious learners

-
    -
  • • Access to 15+ advanced courses
  • -
  • • 1-on-1 mentorship sessions
  • -
  • • Priority support
  • -
  • • Exclusive job board
  • -
  • • Portfolio review sessions
  • -
- -
- -
-

Enterprise

-

Custom

-

For teams and organizations

-
    -
  • • All Professional features
  • -
  • • Custom curriculum design
  • -
  • • Team management tools
  • -
  • • Dedicated account manager
  • -
  • • Advanced analytics and reporting
  • -
- -
-
-
- -
-

Stay Updated on New Courses

-

- Subscribe to get updates on new courses, exclusive tips, and special offers delivered to your inbox. -

-
- - -
-

- We respect your privacy. Unsubscribe anytime. -

-
- -
-

- © 2025 Code with me. All rights reserved. -

-
-
+ + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + ); -- 2.49.1