2 Commits

Author SHA1 Message Date
3f4098d156 Update src/app/page.tsx 2025-12-26 16:35:13 +00:00
a8cd53b501 Update src/app/globals.css 2025-12-26 16:33:41 +00:00
2 changed files with 133 additions and 342 deletions

View File

@@ -6,8 +6,8 @@
--background: #ffffff; --background: #ffffff;
--card: #fcfcfc; --card: #fcfcfc;
--foreground: #00120ae6; --foreground: #120006e6;
--primary-cta: #15ad59; --primary-cta: #e63946;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;
--accent: #e2e2e2; --accent: #e2e2e2;
--background-accent: #c4c4c4; --background-accent: #c4c4c4;

View File

@@ -1,17 +1,6 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; 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() { export default function LandingPage() {
return ( return (
@@ -27,334 +16,136 @@ export default function LandingPage() {
secondaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div id="nav" data-section="nav"> <div className="min-h-screen bg-background text-foreground">
<NavbarStyleMinimal <div className="container mx-auto px-4 py-16">
brandName="Code with me" <div className="text-center">
button={{ <h1 className="text-4xl font-bold mb-4">Code with me</h1>
text: "Explore Courses", <p className="text-xl text-muted-foreground mb-8">
href: "pricing" Learn Web Development & Programming from Industry Experts
}} </p>
/> <p className="text-lg mb-6">
</div> Join 2,500+ students learning coding from industry experts. Web development, React, Full Stack courses with 1-on-1 mentorship.
</p>
<div id="hero" data-section="hero"> <div className="flex justify-center gap-4 mb-12">
<HeroSplitAvatars <a
title="Learn Coding from Industry Experts" href="#courses"
description="Join thousands of students transforming their careers with our comprehensive coding programs. From beginner to advanced, we guide you every step of the way." className="px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors"
tag="Start Learning Today" >
tagIcon={Sparkles} Browse Courses
avatars={[ </a>
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Student 1" }, <a
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Student 2" }, href="#contact"
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Student 3" }, className="px-6 py-3 border border-border rounded-lg hover:bg-accent transition-colors"
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Student 4" }, >
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Student 5" } Schedule Demo
]} </a>
avatarText="Join 2,500+ successful graduates" </div>
buttons={[ </div>
{ text: "Browse Courses", href: "pricing" },
{ text: "Schedule Demo", href: "contact" } <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8 mt-16">
]} <div className="bg-card p-6 rounded-lg border border-border">
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg" <h3 className="text-xl font-semibold mb-3">Web Development Bootcamp</h3>
imageAlt="Students learning together" <p className="text-muted-foreground mb-4">
imagePosition="right" Start with HTML, CSS, and JavaScript. Build responsive websites and understand the fundamentals.
/> </p>
</div> <p className="text-2xl font-bold text-primary">$299</p>
</div>
<div id="about" data-section="about">
<TagMediaSplitAbout <div className="bg-card p-6 rounded-lg border border-border">
title="Empowering the Next Generation of Developers" <h3 className="text-xl font-semibold mb-3">React Mastery Course</h3>
description="Code with me is dedicated to making quality coding education accessible to everyone. Our expert instructors bring real-world experience to every lesson." <p className="text-muted-foreground mb-4">
textboxLayout="default" Master React, Node.js, and databases. Build full-stack applications ready for production.
contentTag="OUR APPROACH" </p>
contentTagIcon={Zap} <p className="text-2xl font-bold text-primary">$249</p>
contentTitle="Practical Learning for Real Careers" </div>
contentDescription="We believe in learning by doing. Every course combines theoretical knowledge with hands-on projects that build your portfolio. Our curriculum is updated regularly to match industry demands and emerging technologies."
contentButtons={[ <div className="bg-card p-6 rounded-lg border border-border">
{ text: "Learn More", href: "#" } <h3 className="text-xl font-semibold mb-3">Full Stack Development</h3>
]} <p className="text-muted-foreground mb-4">
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484695254-p59fsyqd.jpg" Learn server-side programming, API development, and database architecture for scalable applications.
imageAlt="Our teaching team" </p>
imagePosition="right" <p className="text-2xl font-bold text-primary">$399</p>
useInvertedBackground="noInvert" </div>
/> </div>
</div>
<div className="mt-16 text-center">
<div id="features" data-section="features"> <h2 className="text-3xl font-bold mb-6">Simple, Transparent Pricing</h2>
<FeatureCardSeven <div className="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
title="Our Learning Paths" <div className="bg-card p-8 rounded-lg border border-border">
description="Master coding with our structured, progressive learning tracks designed for every skill level." <h3 className="text-xl font-semibold mb-2">Starter</h3>
textboxLayout="default" <p className="text-3xl font-bold mb-4">$49/month</p>
animationType="slide-up" <p className="text-muted-foreground mb-6">Perfect for beginners</p>
useInvertedBackground="noInvert" <ul className="text-left space-y-2 mb-6">
features={[ <li> Access to 3 core courses</li>
{ <li> Community forum access</li>
id: 1, <li> Email support</li>
title: "Web Development Fundamentals", <li> Certificate of completion</li>
description: "Start with HTML, CSS, and JavaScript. Build responsive websites and understand the fundamentals of modern web development.", </ul>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484693438-07rkdlqa.jpg" <button className="w-full px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors">
}, Get Started
{ </button>
id: 2, </div>
title: "Advanced Web Technologies",
description: "Master React, Node.js, and databases. Build full-stack applications ready for production environments.", <div className="bg-card p-8 rounded-lg border border-border">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494973168-mwn1lqco.jpg" <h3 className="text-xl font-semibold mb-2">Professional</h3>
}, <p className="text-3xl font-bold mb-4">$99/month</p>
{ <p className="text-muted-foreground mb-6">Best for serious learners</p>
id: 3, <ul className="text-left space-y-2 mb-6">
title: "Backend & Database Design", <li> Access to 15+ advanced courses</li>
description: "Learn server-side programming, API development, and database architecture for scalable applications.", <li> 1-on-1 mentorship sessions</li>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494974186-q9l6jbqi.jpg" <li> Priority support</li>
} <li> Exclusive job board</li>
]} <li> Portfolio review sessions</li>
/> </ul>
</div> <button className="w-full px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors">
Get Started
<div id="courses" data-section="courses"> </button>
<ProductCardTwo </div>
title="Our Popular Courses"
description="Discover our most sought-after coding courses designed to accelerate your career." <div className="bg-card p-8 rounded-lg border border-border">
textboxLayout="default" <h3 className="text-xl font-semibold mb-2">Enterprise</h3>
animationType="blur-reveal" <p className="text-3xl font-bold mb-4">Custom</p>
useInvertedBackground="noInvert" <p className="text-muted-foreground mb-6">For teams and organizations</p>
gridVariant="three-columns-all-equal-width" <ul className="text-left space-y-2 mb-6">
products={[ <li> All Professional features</li>
{ <li> Custom curriculum design</li>
id: "1", <li> Team management tools</li>
brand: "Code with me", <li> Dedicated account manager</li>
name: "Web Development Bootcamp", <li> Advanced analytics and reporting</li>
price: "$299", </ul>
rating: 5, <button className="w-full px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors">
reviewCount: "1.2k", Contact Sales
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494975050-7ahm4emg.jpg", </button>
imageAlt: "Web Development Bootcamp" </div>
}, </div>
{ </div>
id: "2",
brand: "Code with me", <div id="contact" className="mt-16 text-center">
name: "React Mastery Course", <h2 className="text-3xl font-bold mb-6">Stay Updated on New Courses</h2>
price: "$249", <p className="text-lg text-muted-foreground mb-8">
rating: 5, Subscribe to get updates on new courses, exclusive tips, and special offers delivered to your inbox.
reviewCount: "950", </p>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494976181-onrupp9y.jpg", <div className="flex justify-center gap-4 max-w-md mx-auto">
imageAlt: "React Mastery Course" <input
}, type="email"
{ placeholder="your@email.com"
id: "3", className="flex-1 px-4 py-3 border border-border rounded-lg bg-background"
brand: "Code with me", />
name: "Full Stack Development", <button className="px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors">
price: "$399", Subscribe
rating: 5, </button>
reviewCount: "1.8k", </div>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766765157105-rpvnj8as.jpg", <p className="text-sm text-muted-foreground mt-4">
imageAlt: "Full Stack Development" We respect your privacy. Unsubscribe anytime.
} </p>
]} </div>
/>
</div> <div className="mt-16 pt-8 border-t border-border text-center">
<p className="text-muted-foreground">
<div id="pricing" data-section="pricing"> © 2025 Code with me. All rights reserved.
<PricingCardTwo </p>
title="Simple, Transparent Pricing" </div>
description="Choose the perfect plan for your learning journey. No hidden fees, cancel anytime." </div>
textboxLayout="default"
animationType="opacity"
useInvertedBackground="noInvert"
plans={[
{
id: "starter",
badge: "Starter",
badgeIcon: Zap,
price: "$49/month",
subtitle: "Perfect for beginners",
buttons: [
{ text: "Get Started", href: "#" },
{ text: "Learn More", href: "#" }
],
features: [
"Access to 3 core courses",
"Community forum access",
"Email support",
"Certificate of completion"
]
},
{
id: "professional",
badge: "Professional",
badgeIcon: Sparkles,
price: "$99/month",
subtitle: "Best for serious learners",
buttons: [
{ text: "Get Started", href: "#" },
{ text: "Chat to Sales", href: "#" }
],
features: [
"Access to 15+ advanced courses",
"1-on-1 mentorship sessions",
"Priority support",
"Exclusive job board",
"Portfolio review sessions"
]
},
{
id: "enterprise",
badge: "Enterprise",
badgeIcon: Award,
price: "Custom",
subtitle: "For teams and organizations",
buttons: [
{ text: "Contact Sales", href: "#" },
{ text: "Schedule Call", href: "#" }
],
features: [
"All Professional features",
"Custom curriculum design",
"Team management tools",
"Dedicated account manager",
"Advanced analytics and reporting"
]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="Success Stories from Our Students"
description="Hear from developers who transformed their careers with Code with me."
textboxLayout="default"
animationType="scale-rotate"
useInvertedBackground="noInvert"
gridVariant="uniform-all-items-equal"
testimonials={[
{
id: "1",
name: "Sarah Chen",
role: "Junior Developer",
company: "TechStartup Co",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg",
linkedinUrl: "https://linkedin.com/in/sarahchen"
},
{
id: "2",
name: "Marcus Williams",
role: "Full Stack Engineer",
company: "Digital Solutions",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg",
linkedinUrl: "https://linkedin.com/in/marcuswilliams"
},
{
id: "3",
name: "Emma Rodriguez",
role: "Frontend Developer",
company: "Creative Agency",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg",
linkedinUrl: "https://linkedin.com/in/emmarodriguez"
},
{
id: "4",
name: "James Park",
role: "Software Engineer",
company: "Tech Giants Inc",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508651819-t3cnqjfz.jpg",
linkedinUrl: "https://linkedin.com/in/jamespark"
},
{
id: "5",
name: "Lisa Anderson",
role: "React Developer",
company: "WebPro Services",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508653705-qp2xy5s6.jpg",
linkedinUrl: "https://linkedin.com/in/lisaanderson"
},
{
id: "6",
name: "David Kumar",
role: "Backend Developer",
company: "CloudTech Systems",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766765158294-cmlo8smz.jpg",
linkedinUrl: "https://linkedin.com/in/davidkumar"
}
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Find answers to common questions about our courses and enrollment process."
textboxLayout="default"
useInvertedBackground="noInvert"
mediaPosition="left"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494977068-7yfz149c.jpg"
imageAlt="FAQ illustration"
animationType="smooth"
faqs={[
{
id: "1",
title: "Do I need prior coding experience?",
content: "No! Our Beginner courses start from scratch. We welcome complete beginners and teach all fundamentals step by step. If you have experience, you can start with Intermediate or Advanced courses."
},
{
id: "2",
title: "What is the time commitment for each course?",
content: "Most courses require 5-10 hours per week. You can learn at your own pace and access materials anytime. Full-time bootcamps are also available for intensive learning."
},
{
id: "3",
title: "Do I get a certificate after completion?",
content: "Yes! All courses include a certificate of completion that you can add to your resume and LinkedIn profile. Our certificates are recognized by industry partners."
},
{
id: "4",
title: "Can I get help if I get stuck?",
content: "Absolutely! Professional plan members get 1-on-1 mentorship. All students have access to our community forum where instructors and peers help answer questions."
},
{
id: "5",
title: "Is there a money-back guarantee?",
content: "We offer a 14-day money-back guarantee if you're not satisfied with the course. No questions asked. We're confident you'll love learning with us."
},
{
id: "6",
title: "How do I access course materials?",
content: "All materials are available through our online learning platform 24/7. You can access videos, assignments, and resources on any device."
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Newsletter"
title="Stay Updated on New Courses"
description="Subscribe to get updates on new courses, exclusive tips, and special offers delivered to your inbox."
useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766494977068-7yfz149c.jpg"
imageAlt="Subscribe illustration"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Code with me"
copyrightText="© 2025 Code with me. All rights reserved."
socialLinks={[
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
]}
/>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );