From 38bea1c7567fcc5572b6bcde46376549ae8583ba Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 13:46:41 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 137 +++++++++++++---------------------------------- 1 file changed, 36 insertions(+), 101 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 694eb45..05f83a1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { BookOpen, Compass, Rocket, Star, Sun } from "lucide-react"; +import { BookOpen, Compass, Rocket, Star, Sun, Zap, Globe, Flame, CircleDot } from "lucide-react"; export default function LandingPage() { return ( @@ -30,21 +30,13 @@ export default function LandingPage() { @@ -53,63 +45,40 @@ export default function LandingPage() {
@@ -121,34 +90,19 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Mercury", - description: "The smallest planet and closest to the Sun.", - imageSrc: "http://img.b2bpic.net/free-photo/black-white-details-moon-texture-concept_23-2149535780.jpg", - buttonIcon: "Zap", + title: "Mercury", description: "The smallest planet and closest to the Sun.", imageSrc: "http://img.b2bpic.net/free-photo/black-white-details-moon-texture-concept_23-2149535780.jpg", buttonIcon: Zap, }, { - title: "Venus", - description: "A scorching, greenhouse-gas trapped world.", - imageSrc: "http://img.b2bpic.net/free-photo/gradient-colorful-soap-bubble-black-background_23-2148235924.jpg", - buttonIcon: "Sun", + title: "Venus", description: "A scorching, greenhouse-gas trapped world.", imageSrc: "http://img.b2bpic.net/free-photo/gradient-colorful-soap-bubble-black-background_23-2148235924.jpg", buttonIcon: Sun, }, { - title: "Earth", - description: "Our home, a vibrant oasis in the dark.", - imageSrc: "http://img.b2bpic.net/free-photo/abstract-backdrop-with-pink-blue-sphere_23-2148235869.jpg", - buttonIcon: "Globe", + title: "Earth", description: "Our home, a vibrant oasis in the dark.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-backdrop-with-pink-blue-sphere_23-2148235869.jpg", buttonIcon: Globe, }, { - title: "Mars", - description: "The iconic red planet with massive dust storms.", - imageSrc: "http://img.b2bpic.net/free-photo/brown-smooth-concrete-wall_53876-94577.jpg", - buttonIcon: "Flame", + title: "Mars", description: "The iconic red planet with massive dust storms.", imageSrc: "http://img.b2bpic.net/free-photo/brown-smooth-concrete-wall_53876-94577.jpg", buttonIcon: Flame, }, { - title: "Jupiter", - description: "The giant gas planet of our neighborhood.", - imageSrc: "http://img.b2bpic.net/free-photo/space-background-with-fire-ice-planet_1048-10531.jpg?_wi=1", - buttonIcon: "CircleDot", + title: "Jupiter", description: "The giant gas planet of our neighborhood.", imageSrc: "http://img.b2bpic.net/free-photo/space-background-with-fire-ice-planet_1048-10531.jpg", buttonIcon: CircleDot, }, ]} title="The Eight Planets" @@ -164,7 +118,7 @@ export default function LandingPage() { description="The Sun's massive gravity acts as the anchor for our solar system, pulling planets into elliptical orbits that sustain the order of the cosmos." subdescription="Understanding gravity allows us to predict the position of celestial bodies millions of years into the future." icon={Compass} - imageSrc="http://img.b2bpic.net/free-photo/space-background-with-fire-ice-planet_1048-10531.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/space-background-with-fire-ice-planet_1048-10531.jpg" mediaAnimation="slide-up" />
@@ -175,25 +129,13 @@ export default function LandingPage() { useInvertedBackground={true} faqs={[ { - id: "1", - title: "Which planet is closest to the Sun?", - content: "Mercury is the closest planet to the Sun.", - }, + id: "1", title: "Which planet is closest to the Sun?", content: "Mercury is the closest planet to the Sun."}, { - id: "2", - title: "What is the red planet?", - content: "Mars is commonly known as the Red Planet.", - }, + id: "2", title: "What is the red planet?", content: "Mars is commonly known as the Red Planet."}, { - id: "3", - title: "Why do planets orbit the Sun?", - content: "The gravitational pull of the Sun keeps planets in stable orbits.", - }, + id: "3", title: "Why do planets orbit the Sun?", content: "The gravitational pull of the Sun keeps planets in stable orbits."}, { - id: "4", - title: "Is the Sun a star?", - content: "Yes, the Sun is a G-type main-sequence star.", - }, + id: "4", title: "Is the Sun a star?", content: "Yes, the Sun is a G-type main-sequence star."}, ]} title="Space Knowledge Quiz" description="Test your mastery of the stars with our fun space quiz." @@ -205,6 +147,9 @@ export default function LandingPage() { @@ -213,29 +158,19 @@ export default function LandingPage() { logoText="Solar System Explorer" columns={[ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { - label: "Home", - href: "#hero", - }, + label: "Home", href: "#hero"}, { - label: "Planets", - href: "#planets", - }, + label: "Planets", href: "#planets"}, ], }, { - title: "Learn", - items: [ + title: "Learn", items: [ { - label: "Gravity", - href: "#about", - }, + label: "Gravity", href: "#about"}, { - label: "Quiz", - href: "#quiz", - }, + label: "Quiz", href: "#quiz"}, ], }, ]} -- 2.49.1