Update src/app/page.tsx
This commit is contained in:
@@ -28,35 +28,21 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/en"},
|
||||||
id: "/en",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Vision",
|
name: "Vision", id: "/en#vision"},
|
||||||
id: "/en#vision",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/en#services"},
|
||||||
id: "/en#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Portfolio",
|
name: "Portfolio", id: "/en#portfolio"},
|
||||||
id: "/en#portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Clients",
|
name: "Clients", id: "/en#clients"},
|
||||||
id: "/en#clients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/en#contact"},
|
||||||
id: "/en#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Enkidu Soft"
|
brandName="Enkidu Soft"
|
||||||
button={{
|
button={{
|
||||||
text: "Get in Touch",
|
text: "Get in Touch", href: "/en#contact"}}
|
||||||
href: "/en#contact",
|
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -67,6 +53,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/network-connections_1048-7667.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/network-connections_1048-7667.jpg"
|
||||||
imageAlt="Network connections"
|
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>
|
</div>
|
||||||
|
|
||||||
@@ -76,6 +65,8 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
title="Our Featured Products"
|
||||||
|
description="Explore our range of innovative products designed to meet your needs."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -85,17 +76,47 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
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>
|
||||||
|
|
||||||
<div id="testimonial" data-section="testimonial">
|
<div id="testimonial" data-section="testimonial">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
useInvertedBackground={false}
|
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>
|
||||||
|
|
||||||
<div id="ecommerce" data-section="ecommerce">
|
<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>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user