Compare commits
3 Commits
version_1_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| b0504be508 | |||
|
|
11d66d1402 | ||
| 7453c301f1 |
@@ -1,19 +1,19 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
||||
@import "tailwindcss";
|
||||
@import "./styles/masks.css";
|
||||
@import "./styles/animations.css";
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #f6f0e9;
|
||||
--card: #efe7dd;
|
||||
--foreground: #2b180a;
|
||||
--primary-cta: #2b180a;
|
||||
--primary-cta-text: #f6f0e9;
|
||||
--secondary-cta: #efe7dd;
|
||||
--secondary-cta-text: #2b180a;
|
||||
--accent: #94877c;
|
||||
--background-accent: #afa094;
|
||||
--background: #000000;
|
||||
--card: #111111;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffffff;
|
||||
--primary-cta-text: #000000;
|
||||
--secondary-cta: #111111;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #333333;
|
||||
--background-accent: #222222;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1.5rem;
|
||||
@@ -88,8 +88,8 @@
|
||||
--color-background-accent: var(--background-accent);
|
||||
|
||||
/* Fonts */
|
||||
--font-sans: 'Inter Tight', sans-serif;
|
||||
--font-tight: "Inter Tight", sans-serif;
|
||||
--font-sans: 'Inter', sans-serif;
|
||||
--font-tight: "Inter", sans-serif;
|
||||
--font-mono: monospace;
|
||||
|
||||
/* Border Radius */
|
||||
|
||||
@@ -1,253 +1,36 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards';
|
||||
import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
|
||||
import TeamStackedCards from '@/components/sections/team/TeamStackedCards';
|
||||
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import ProductsSection from './HomePage/sections/Products';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import TeamSection from './HomePage/sections/Team';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboardTiltedCarousel
|
||||
tag="Since 2024"
|
||||
title="Start Your Morning Right at Morni Kafe"
|
||||
description="Artisan coffee, handcrafted pastries, and a warm atmosphere waiting for you every single day."
|
||||
primaryButton={{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Find Us",
|
||||
href: "#contact",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-black-background-with-drink-burlap_114579-16644.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/espresso-coffee-glass-white-napkin-with-cocoa-shaker-wooden-spoon_23-2147906714.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-old-grinder_1204-105.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-wood-board-with-jar-coffee-beans-top-view_176474-451.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-breakfast-elements_23-2148173333.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nuts-near-tray-with-coffee_23-2147885887.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="Our story begins with the simple ritual of a perfect morning cup. We believe that coffee is more than just caffeine; it's the heartbeat of a great start. From locally roasted beans to buttery pastries baked at dawn, we are dedicated to bringing community, warmth, and flavor to every guest."
|
||||
primaryButton={{
|
||||
text: "Read More",
|
||||
href: "#contact",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesMediaCards
|
||||
tag="Why Us"
|
||||
title="A Crafted Experience"
|
||||
description="We pour passion into every step of our process to ensure your daily experience is exceptional."
|
||||
items={[
|
||||
{
|
||||
title: "Artisan Brewing",
|
||||
description: "Precision methods for the perfect pour-over every time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-roasted-coffee-beans-fill-wooden-grinder-generated-by-ai_188544-40838.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fresh Daily",
|
||||
description: "Our pastries are baked fresh in our ovens every single morning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-sweet-bagels-with-buns-flour-dark-pastry-pie-dough-cake-sweet-sugar_140725-98213.jpg",
|
||||
},
|
||||
{
|
||||
title: "Local Soul",
|
||||
description: "Sourced from neighborhood roasters and local suppliers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064697.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesImageBento
|
||||
tag="Our Menu"
|
||||
title="Fresh Finds"
|
||||
description="Discover our selection of handcrafted coffee, tea, and seasonal snacks."
|
||||
items={[
|
||||
{
|
||||
title: "Croissant",
|
||||
description: "Buttery & flakey.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-challah-dish-hanukkah_23-2151102329.jpg",
|
||||
},
|
||||
{
|
||||
title: "Signature Latte",
|
||||
description: "Smooth & rich.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cup-coffee-wooden-table_23-2148251625.jpg",
|
||||
},
|
||||
{
|
||||
title: "Blueberry Muffin",
|
||||
description: "Freshly baked.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-muffins-with-blueberries-copy-space_23-2148718729.jpg",
|
||||
},
|
||||
{
|
||||
title: "Iced Coffee",
|
||||
description: "Cold & refreshing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ice-coffee-with-milk-table_140725-7361.jpg",
|
||||
},
|
||||
{
|
||||
title: "Avocado Toast",
|
||||
description: "Sourdough goodness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fresh Baguette",
|
||||
description: "Crusty & warm.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-baked-homemade-baguette-bread_114579-91569.jpg",
|
||||
},
|
||||
{
|
||||
title: "Classic Scone",
|
||||
description: "With clotted cream.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-strawberries-white-bowl-with-toasted-slices-bread-wooden-kitchen-board-white-wooden-background_141793-25464.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProductsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialTrustCard
|
||||
quote="The most inviting place to start my morning. The coffee is unmatched and the staff feels like family."
|
||||
rating={5}
|
||||
author="Sarah Miller, Local Regular"
|
||||
avatars={[
|
||||
{
|
||||
name: "Sarah",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-holding-coffee-cup-cafe_1170-692.jpg",
|
||||
},
|
||||
{
|
||||
name: "John",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/five-oclock-tradition_1098-13665.jpg",
|
||||
},
|
||||
{
|
||||
name: "Emily",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-drinking-coffee-enjoying-cafe-after-work_637285-248.jpg",
|
||||
},
|
||||
{
|
||||
name: "David",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-male-enjoying-coffee-cup_23-2148673399.jpg",
|
||||
},
|
||||
{
|
||||
name: "Alice",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-curly-redhead-bearded-man-tasting-coffee-cup_171337-9999.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<SectionErrorBoundary name="team">
|
||||
<TeamStackedCards
|
||||
tag="Meet Us"
|
||||
title="The Morni Team"
|
||||
description="The creative minds and baristas behind your perfect cup."
|
||||
members={[
|
||||
{
|
||||
name: "Elena",
|
||||
role: "Head Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-male-barista-working-coffee-house_1303-31760.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marcus",
|
||||
role: "Lead Baker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-clay_23-2148878513.jpg",
|
||||
},
|
||||
{
|
||||
name: "Chloe",
|
||||
role: "Cafe Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-business-woman-wearing-glasses-drinking-coffee_171337-16186.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TeamSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Common Queries"
|
||||
title="Frequently Asked"
|
||||
description="Got questions about our beans or services? Find answers here."
|
||||
categories={[
|
||||
{
|
||||
name: "General",
|
||||
items: [
|
||||
{
|
||||
question: "What are your hours?",
|
||||
answer: "We are open daily from 7 AM to 6 PM.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer Wi-Fi?",
|
||||
answer: "Yes, we provide free high-speed Wi-Fi for our guests.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
items: [
|
||||
{
|
||||
question: "Are your pastries vegan?",
|
||||
answer: "We have a variety of vegan options available daily.",
|
||||
},
|
||||
{
|
||||
question: "Do you sell coffee beans?",
|
||||
answer: "Yes, you can purchase our roasted beans in-store.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Visit Us"
|
||||
text="Join our growing community at Morni Kafe. Your next favorite morning ritual starts here."
|
||||
primaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.com",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Follow on Instagram",
|
||||
href: "https://instagram.com",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
22
src/pages/HomePage/sections/About.tsx
Normal file
22
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="Our story begins with the simple ritual of a perfect morning cup. We believe that coffee is more than just caffeine; it's the heartbeat of a great start. From locally roasted beans to buttery pastries baked at dawn, we are dedicated to bringing community, warmth, and flavor to every guest."
|
||||
primaryButton={{
|
||||
text: "Read More",
|
||||
href: "#contact",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Visit Us"
|
||||
text="Join our growing community at Morni Kafe. Your next favorite morning ritual starts here."
|
||||
primaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.com",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Follow on Instagram",
|
||||
href: "https://instagram.com",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
48
src/pages/HomePage/sections/Faq.tsx
Normal file
48
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Common Queries"
|
||||
title="Frequently Asked"
|
||||
description="Got questions about our beans or services? Find answers here."
|
||||
categories={[
|
||||
{
|
||||
name: "General",
|
||||
items: [
|
||||
{
|
||||
question: "What are your hours?",
|
||||
answer: "We are open daily from 7 AM to 6 PM.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer Wi-Fi?",
|
||||
answer: "Yes, we provide free high-speed Wi-Fi for our guests.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
items: [
|
||||
{
|
||||
question: "Are your pastries vegan?",
|
||||
answer: "We have a variety of vegan options available daily.",
|
||||
},
|
||||
{
|
||||
question: "Do you sell coffee beans?",
|
||||
answer: "Yes, you can purchase our roasted beans in-store.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
37
src/pages/HomePage/sections/Features.tsx
Normal file
37
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesMediaCards
|
||||
tag="Why Us"
|
||||
title="A Crafted Experience"
|
||||
description="We pour passion into every step of our process to ensure your daily experience is exceptional."
|
||||
items={[
|
||||
{
|
||||
title: "Artisan Brewing",
|
||||
description: "Precision methods for the perfect pour-over every time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-roasted-coffee-beans-fill-wooden-grinder-generated-by-ai_188544-40838.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fresh Daily",
|
||||
description: "Our pastries are baked fresh in our ovens every single morning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-sweet-bagels-with-buns-flour-dark-pastry-pie-dough-cake-sweet-sugar_140725-98213.jpg",
|
||||
},
|
||||
{
|
||||
title: "Local Soul",
|
||||
description: "Sourced from neighborhood roasters and local suppliers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064697.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
20
src/pages/HomePage/sections/Hero.tsx
Normal file
20
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
// Created by add_section_from_catalog (HeroSplitVerticalMarquee).
|
||||
|
||||
import React from 'react';
|
||||
import HeroSplitVerticalMarquee from '@/components/sections/hero/HeroSplitVerticalMarquee';
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div data-webild-section="hero" id="hero">
|
||||
<HeroSplitVerticalMarquee
|
||||
description="The AI-powered legal assistant that helps you draft, review, and analyze contracts in seconds."
|
||||
secondaryButton={{"href":"#contact","text":"Book Demo"}}
|
||||
primaryButton={{"text":"Get Started","href":"#products"}}
|
||||
tag="Dejure.ai"
|
||||
title="Legal Tech, Reimagined"
|
||||
leftItems={[]}
|
||||
rightItems={[]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
57
src/pages/HomePage/sections/Products.tsx
Normal file
57
src/pages/HomePage/sections/Products.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "products" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProductsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesImageBento
|
||||
tag="Our Menu"
|
||||
title="Fresh Finds"
|
||||
description="Discover our selection of handcrafted coffee, tea, and seasonal snacks."
|
||||
items={[
|
||||
{
|
||||
title: "Croissant",
|
||||
description: "Buttery & flakey.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-challah-dish-hanukkah_23-2151102329.jpg",
|
||||
},
|
||||
{
|
||||
title: "Signature Latte",
|
||||
description: "Smooth & rich.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cup-coffee-wooden-table_23-2148251625.jpg",
|
||||
},
|
||||
{
|
||||
title: "Blueberry Muffin",
|
||||
description: "Freshly baked.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-muffins-with-blueberries-copy-space_23-2148718729.jpg",
|
||||
},
|
||||
{
|
||||
title: "Iced Coffee",
|
||||
description: "Cold & refreshing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ice-coffee-with-milk-table_140725-7361.jpg",
|
||||
},
|
||||
{
|
||||
title: "Avocado Toast",
|
||||
description: "Sourdough goodness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fresh Baguette",
|
||||
description: "Crusty & warm.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-baked-homemade-baguette-bread_114579-91569.jpg",
|
||||
},
|
||||
{
|
||||
title: "Classic Scone",
|
||||
description: "With clotted cream.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-strawberries-white-bowl-with-toasted-slices-bread-wooden-kitchen-board-white-wooden-background_141793-25464.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
37
src/pages/HomePage/sections/Team.tsx
Normal file
37
src/pages/HomePage/sections/Team.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "team" section.
|
||||
|
||||
import React from 'react';
|
||||
import TeamStackedCards from '@/components/sections/team/TeamStackedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TeamSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="team" data-section="team">
|
||||
<SectionErrorBoundary name="team">
|
||||
<TeamStackedCards
|
||||
tag="Meet Us"
|
||||
title="The Morni Team"
|
||||
description="The creative minds and baristas behind your perfect cup."
|
||||
members={[
|
||||
{
|
||||
name: "Elena",
|
||||
role: "Head Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-male-barista-working-coffee-house_1303-31760.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marcus",
|
||||
role: "Lead Baker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-clay_23-2148878513.jpg",
|
||||
},
|
||||
{
|
||||
name: "Chloe",
|
||||
role: "Cafe Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-business-woman-wearing-glasses-drinking-coffee_171337-16186.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
42
src/pages/HomePage/sections/Testimonials.tsx
Normal file
42
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,42 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialTrustCard
|
||||
quote="The most inviting place to start my morning. The coffee is unmatched and the staff feels like family."
|
||||
rating={5}
|
||||
author="Sarah Miller, Local Regular"
|
||||
avatars={[
|
||||
{
|
||||
name: "Sarah",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-holding-coffee-cup-cafe_1170-692.jpg",
|
||||
},
|
||||
{
|
||||
name: "John",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/five-oclock-tradition_1098-13665.jpg",
|
||||
},
|
||||
{
|
||||
name: "Emily",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-drinking-coffee-enjoying-cafe-after-work_637285-248.jpg",
|
||||
},
|
||||
{
|
||||
name: "David",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-male-enjoying-coffee-cup_23-2148673399.jpg",
|
||||
},
|
||||
{
|
||||
name: "Alice",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-curly-redhead-bearded-man-tasting-coffee-cup_171337-9999.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user