Update src/app/page.tsx
This commit is contained in:
@@ -55,7 +55,11 @@ export default function LandingPage() {
|
||||
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"]}
|
||||
bulletPoints={[
|
||||
{ title: "Innovation driven", description: "Driving innovation across all our solutions." },
|
||||
{ title: "Client-focused", description: "Prioritizing client needs and delivering tailored results." },
|
||||
{ title: "Excellence in execution", description: "Committing to high-quality execution in every project." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -80,9 +84,11 @@ export default function LandingPage() {
|
||||
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"},
|
||||
id: "john-doe", 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", description: "Leading our company with vision and expertise."
|
||||
},
|
||||
{
|
||||
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"},
|
||||
id: "jane-smith", 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", description: "Pioneering our technological advancements."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -95,10 +101,8 @@ export default function LandingPage() {
|
||||
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"},
|
||||
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>
|
||||
|
||||
@@ -108,13 +112,12 @@ export default function LandingPage() {
|
||||
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"},
|
||||
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}
|
||||
total="99.99"
|
||||
buttons={[
|
||||
{ text: "Checkout", onClick: () => console.log("Checkout clicked") },
|
||||
{ text: "Checkout", onClick: () => console.log("Checkout clicked") }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user