Update src/app/page.tsx

This commit is contained in:
2026-05-11 11:05:26 +00:00
parent 9085e6867b
commit 5053c15c9e

View File

@@ -6,7 +6,6 @@ import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -31,32 +30,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "hero"},
{
name: "Fashion", id: "fashion"},
{
name: "Skincare", id: "products"},
{
name: "Contact", id: "contact"},
{ name: "Fashion", id: "fashion" },
{ name: "Skincare", id: "products" },
{ name: "Contact", id: "contact" },
]}
brandName="LUMIS AI"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="LUMIS AI PORTFOLIO"
description="Redefining luxury fashion and advanced skincare through AI-driven creative editorial. Explore our curated collections where digital innovation meets high-end aesthetics."
buttons={[
{
text: "View Collection", href: "#products"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXZk0VNsRzLvQXlXulRiiKwk8N/uploaded-1778494512056-3tc8rm8p.png"
imageAlt="AI Luxury Collection Hero"
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
@@ -206,4 +187,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}