diff --git a/src/app/page.tsx b/src/app/page.tsx index dfabcc8..5bd38cd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,22 +28,10 @@ export default function LandingPage() { @@ -187,42 +92,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} products={[ - { - id: "p1", - name: "Signature Blend Coffee", - price: "$18", - imageSrc: "http://img.b2bpic.net/free-photo/barista-preparing-beverage_23-2149458072.jpg", - }, - { - id: "p2", - name: "Flower Pot Mug", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/composition-delicious-picnic-goodies-blanket_23-2148921070.jpg", - }, - { - id: "p3", - name: "Artisan Bakery Box", - price: "$25", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-freshly-baked-croissants-bakery-blurred-background_169016-25377.jpg", - }, - { - id: "p4", - name: "Organic Whole Beans", - price: "$20", - imageSrc: "http://img.b2bpic.net/free-photo/caffeine-working-coffee-cup-table_1122-2430.jpg", - }, - { - id: "p5", - name: "Branded Tote Bag", - price: "$12", - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-drinking-coffee_23-2148395304.jpg", - }, - { - id: "p6", - name: "Local Honey Jar", - price: "$10", - imageSrc: "http://img.b2bpic.net/free-photo/italian-villa-terrace-with-scenic-view-outdoor-seating_23-2151986078.jpg", - }, + { id: "p1", name: "Signature Blend Coffee", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/barista-preparing-beverage_23-2149458072.jpg" }, + { id: "p2", name: "Flower Pot Mug", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/composition-delicious-picnic-goodies-blanket_23-2148921070.jpg" }, + { id: "p3", name: "Artisan Bakery Box", price: "$25", imageSrc: "http://img.b2bpic.net/free-photo/closeup-freshly-baked-croissants-bakery-blurred-background_169016-25377.jpg" }, + { id: "p4", name: "Organic Whole Beans", price: "$20", imageSrc: "http://img.b2bpic.net/free-photo/caffeine-working-coffee-cup-table_1122-2430.jpg" }, + { id: "p5", name: "Branded Tote Bag", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-drinking-coffee_23-2148395304.jpg" }, + { id: "p6", name: "Local Honey Jar", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/italian-villa-terrace-with-scenic-view-outdoor-seating_23-2151986078.jpg" }, ]} title="Shop Merchandise & Coffee" description="Show your Flower Pot Cafe and Bakery pride off to the world! Small batch, organic, roasted in-house." @@ -234,66 +109,25 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - title: "Great Vibe", - quote: "The absolute best spot in La Jolla for a morning coffee.", - name: "Sarah J.", - role: "Local", - imageSrc: "http://img.b2bpic.net/free-photo/girl-drawing-cup-coffee-notebook_158595-664.jpg", - }, - { - id: "2", - title: "Amazing Roasts", - quote: "I buy their beans every week. Can't get enough of it.", - name: "Michael R.", - role: "Coffee Enthusiast", - imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-pretty-positive-woman-drinking-her-favorite-morning-coffee-have-nice-natural-make-up-perfect-skin_291049-325.jpg", - }, - { - id: "3", - title: "Feels like Home", - quote: "A truly inclusive space for everyone in the community.", - name: "Emily K.", - role: "Artist", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-chain-necklace_23-2149409803.jpg", - }, - { - id: "4", - title: "Fresh & Organic", - quote: "The pastries are always fresh and the staff is so kind.", - name: "David W.", - role: "Regular", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-hands_23-2148894595.jpg", - }, - { - id: "5", - title: "Top Tier Cafe", - quote: "Finally, a cafe that cares about quality and community equally.", - name: "Alice T.", - role: "Architect", - imageSrc: "http://img.b2bpic.net/free-photo/crop-mother-daughter-using-smartphone-breakfast_23-2147788237.jpg", - }, + { id: "1", title: "Great Vibe", quote: "The absolute best spot in La Jolla for a morning coffee.", name: "Sarah J.", role: "Local", imageSrc: "http://img.b2bpic.net/free-photo/girl-drawing-cup-coffee-notebook_158595-664.jpg" }, + { id: "2", title: "Amazing Roasts", quote: "I buy their beans every week. Can't get enough of it.", name: "Michael R.", role: "Coffee Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-pretty-positive-woman-drinking-her-favorite-morning-coffee-have-nice-natural-make-up-perfect-skin_291049-325.jpg" }, + { id: "3", title: "Feels like Home", quote: "A truly inclusive space for everyone in the community.", name: "Emily K.", role: "Artist", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-chain-necklace_23-2149409803.jpg" }, + { id: "4", title: "Fresh & Organic", quote: "The pastries are always fresh and the staff is so kind.", name: "David W.", role: "Regular", imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-hands_23-2148894595.jpg" }, + { id: "5", title: "Top Tier Cafe", quote: "Finally, a cafe that cares about quality and community equally.", name: "Alice T.", role: "Architect", imageSrc: "http://img.b2bpic.net/free-photo/crop-mother-daughter-using-smartphone-breakfast_23-2147788237.jpg" }, ]} title="What people are saying" + description="Hear from our wonderful community members about their experiences." />
@@ -301,53 +135,9 @@ export default function LandingPage() { @@ -355,4 +145,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file