Update src/app/page.tsx
This commit is contained in:
@@ -28,35 +28,21 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/en",
|
||||
},
|
||||
name: "Home", id: "/en"},
|
||||
{
|
||||
name: "Vision",
|
||||
id: "/en#vision",
|
||||
},
|
||||
name: "Vision", id: "/en#vision"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/en#services",
|
||||
},
|
||||
name: "Services", id: "/en#services"},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/en#portfolio",
|
||||
},
|
||||
name: "Portfolio", id: "/en#portfolio"},
|
||||
{
|
||||
name: "Clients",
|
||||
id: "/en#clients",
|
||||
},
|
||||
name: "Clients", id: "/en#clients"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/en#contact",
|
||||
},
|
||||
name: "Contact", id: "/en#contact"},
|
||||
]}
|
||||
brandName="Enkidu Soft"
|
||||
button={{
|
||||
text: "Get in Touch",
|
||||
href: "/en#contact",
|
||||
}}
|
||||
text: "Get in Touch", href: "/en#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -67,6 +53,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/network-connections_1048-7667.jpg"
|
||||
imageAlt="Network connections"
|
||||
title="Our Story & Mission"
|
||||
description="We are a company dedicated to innovation and excellence, striving to deliver cutting-edge solutions for our clients."
|
||||
bulletPoints={["Innovation driven", "Client-focused", "Excellence in execution"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -76,6 +65,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Featured Products"
|
||||
description="Explore our range of innovative products designed to meet your needs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -85,17 +76,47 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Meet Our Team"
|
||||
description="A dedicated group of professionals passionate about technology and innovation."
|
||||
members={[
|
||||
{
|
||||
name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", imageAlt: "John Doe, CEO"},
|
||||
{
|
||||
name: "Jane Smith", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/african-american-software-developer-does-visual-coding-creating-software_482257-127024.jpg", imageAlt: "Jane Smith, CTO"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardFifteen
|
||||
useInvertedBackground={false}
|
||||
testimonial="Working with this team has been a game-changer for our business. Their expertise and dedication are unmatched."
|
||||
rating={5}
|
||||
author="Alice Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", alt: "Alice Johnson"},
|
||||
]}
|
||||
company="Innovate Solutions"
|
||||
role="CEO"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCart />
|
||||
<ProductCart
|
||||
isOpen={false}
|
||||
onClose={() => {}}
|
||||
items={[
|
||||
{
|
||||
id: "item1", name: "Sample Product", price: 99.99,
|
||||
quantity: 1,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241207.jpg", imageAlt: "Sample Product Image"},
|
||||
]}
|
||||
total={99.99}
|
||||
buttons={[
|
||||
{ text: "Checkout", onClick: () => console.log("Checkout clicked") },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user