Merge version_2_1782154378325 into main #1
@@ -5,15 +5,15 @@
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #f5faff;
|
||||
--background: #fffafa;
|
||||
--card: #ffffff;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #f5faff;
|
||||
--foreground: #1a0000;
|
||||
--primary-cta: #e63946;
|
||||
--primary-cta-text: #fffafa;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001122;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
--secondary-cta-text: #1a0000;
|
||||
--accent: #f5c4c7;
|
||||
--background-accent: #f09199;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1rem;
|
||||
|
||||
@@ -1,187 +1,33 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
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 MenuSection from './HomePage/sections/Menu';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
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">
|
||||
<HeroSplit
|
||||
tag="Authentic Experience"
|
||||
title="L'Art du Sushi: A Masterclass in Flavors"
|
||||
description="Discover the finest sushi in Hydra. Fresh ingredients, artisanal preparation, and an atmosphere designed for true connoisseurs of Japanese cuisine."
|
||||
primaryButton={{
|
||||
text: "View Our Menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-composition-delicious-poke-bowl_23-2148873849.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="Crafting Perfection, One Roll at a Time"
|
||||
primaryButton={{
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesRevealCards
|
||||
tag="Signature Selection"
|
||||
title="Explore Our Culinary Delights"
|
||||
description="From traditional nigiri to inventive signature rolls, every piece is a work of art."
|
||||
items={[
|
||||
{
|
||||
title: "Premium Sushi Selection",
|
||||
description: "Hand-picked, fresh fish prepared to perfection by our expert masters.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-sushi-rolls-table_23-2148505531.jpg",
|
||||
},
|
||||
{
|
||||
title: "Crispy Tempura Creations",
|
||||
description: "Light, golden, and incredibly satisfying authentic appetizers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-sushi-meal-fish-rolls-with-fish-rice-along-with-sauce-grey-wall_140725-46909.jpg",
|
||||
},
|
||||
{
|
||||
title: "Authentic Wok Specialities",
|
||||
description: "Sizzling, aromatic noodle dishes prepared in our signature wok style.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-beef-parts-black-pan_114579-81662.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MenuSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Reputation"
|
||||
title="Loved by Our Community"
|
||||
description="We are proud to serve the Hydra community with dedication and consistency."
|
||||
metrics={[
|
||||
{
|
||||
value: "4.6/5",
|
||||
title: "Google Rating",
|
||||
description: "Based on 692+ satisfied customer reviews.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-eating-sushi_23-2151345029.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="What Guests Say"
|
||||
title="An Unforgettable Experience"
|
||||
description="Don't take our word for it — our guests share their experiences here."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Meriem ALI MAHDI",
|
||||
role: "Frequent Guest",
|
||||
quote: "Très belle expérience dans ce restaurant ! La qualité des plats et le service sont exceptionnels.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-lady-middle-aged-sit-cafe-summer-terrace-with-sushi-rolls-set_496169-239.jpg",
|
||||
},
|
||||
{
|
||||
name: "Saraoui Math",
|
||||
role: "Food Enthusiast",
|
||||
quote: "Sushis frais, bien présentés et délicieux. Personnel accueillant et très professionnel.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-break-time_23-2149256898.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mira Benrabah",
|
||||
role: "Local Patron",
|
||||
quote: "Tres copieux, ingrédients de qualité avec beaucoup de variété. Meilleur rapport qualité prix.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-meal_23-2148142541.jpg",
|
||||
},
|
||||
{
|
||||
name: "Zakaria J.",
|
||||
role: "Connoisseur",
|
||||
quote: "Une adresse incontournable à Hydra. Le service est rapide et toujours avec le sourire.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-man-having-meal-restaurant_23-2148214633.jpg",
|
||||
},
|
||||
{
|
||||
name: "Amine S.",
|
||||
role: "Regular Guest",
|
||||
quote: "Le meilleur endroit pour les amoureux de sushi. Les yakisoba sont incroyables !",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-family-enjoying-new-year-party_23-2149173249.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Helpful Info"
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our restaurant."
|
||||
categories={[
|
||||
{
|
||||
name: "Service",
|
||||
items: [
|
||||
{
|
||||
question: "Do you offer delivery?",
|
||||
answer: "Yes, we offer both pickup and home delivery services.",
|
||||
},
|
||||
{
|
||||
question: "Are reservations required?",
|
||||
answer: "We recommend reservations, especially for weekend dinner service.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Location",
|
||||
items: [
|
||||
{
|
||||
question: "Where are you located?",
|
||||
answer: "We are at 22 Boulevard Said HAMDINE, Hydra, Algiers.",
|
||||
},
|
||||
{
|
||||
question: "When do you close?",
|
||||
answer: "We are open daily and close at 00:00.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Reach Out"
|
||||
text="Ready for an exquisite culinary journey? Reserve your spot today or contact us for a delivery order."
|
||||
primaryButton={{
|
||||
text: "Call Now: 0554 92 27 72",
|
||||
href: "tel:0554922772",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.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="Crafting Perfection, One Roll at a Time"
|
||||
primaryButton={{
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</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="Reach Out"
|
||||
text="Ready for an exquisite culinary journey? Reserve your spot today or contact us for a delivery order."
|
||||
primaryButton={{
|
||||
text: "Call Now: 0554 92 27 72",
|
||||
href: "tel:0554922772",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.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="Helpful Info"
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our restaurant."
|
||||
categories={[
|
||||
{
|
||||
name: "Service",
|
||||
items: [
|
||||
{
|
||||
question: "Do you offer delivery?",
|
||||
answer: "Yes, we offer both pickup and home delivery services.",
|
||||
},
|
||||
{
|
||||
question: "Are reservations required?",
|
||||
answer: "We recommend reservations, especially for weekend dinner service.",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Location",
|
||||
items: [
|
||||
{
|
||||
question: "Where are you located?",
|
||||
answer: "We are at 22 Boulevard Said HAMDINE, Hydra, Algiers.",
|
||||
},
|
||||
{
|
||||
question: "When do you close?",
|
||||
answer: "We are open daily and close at 00:00.",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/Hero.tsx
Normal file
29
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroSplit
|
||||
tag="Authentic Experience"
|
||||
title="L'Art du Sushi: A Masterclass in Flavors"
|
||||
description="Discover the finest sushi in Hydra. Fresh ingredients, artisanal preparation, and an atmosphere designed for true connoisseurs of Japanese cuisine."
|
||||
primaryButton={{
|
||||
text: "View Our Menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-composition-delicious-poke-bowl_23-2148873849.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
37
src/pages/HomePage/sections/Menu.tsx
Normal file
37
src/pages/HomePage/sections/Menu.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 "menu" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MenuSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesRevealCards
|
||||
tag="Signature Selection"
|
||||
title="Explore Our Culinary Delights"
|
||||
description="From traditional nigiri to inventive signature rolls, every piece is a work of art."
|
||||
items={[
|
||||
{
|
||||
title: "Premium Sushi Selection",
|
||||
description: "Hand-picked, fresh fish prepared to perfection by our expert masters.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-sushi-rolls-table_23-2148505531.jpg",
|
||||
},
|
||||
{
|
||||
title: "Crispy Tempura Creations",
|
||||
description: "Light, golden, and incredibly satisfying authentic appetizers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-sushi-meal-fish-rolls-with-fish-rice-along-with-sauce-grey-wall_140725-46909.jpg",
|
||||
},
|
||||
{
|
||||
title: "Authentic Wok Specialities",
|
||||
description: "Sizzling, aromatic noodle dishes prepared in our signature wok style.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-beef-parts-black-pan_114579-81662.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Reputation"
|
||||
title="Loved by Our Community"
|
||||
description="We are proud to serve the Hydra community with dedication and consistency."
|
||||
metrics={[
|
||||
{
|
||||
value: "4.6/5",
|
||||
title: "Google Rating",
|
||||
description: "Based on 692+ satisfied customer reviews.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-eating-sushi_23-2151345029.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// 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 TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="What Guests Say"
|
||||
title="An Unforgettable Experience"
|
||||
description="Don't take our word for it — our guests share their experiences here."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Meriem ALI MAHDI",
|
||||
role: "Frequent Guest",
|
||||
quote: "Très belle expérience dans ce restaurant ! La qualité des plats et le service sont exceptionnels.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-lady-middle-aged-sit-cafe-summer-terrace-with-sushi-rolls-set_496169-239.jpg",
|
||||
},
|
||||
{
|
||||
name: "Saraoui Math",
|
||||
role: "Food Enthusiast",
|
||||
quote: "Sushis frais, bien présentés et délicieux. Personnel accueillant et très professionnel.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-break-time_23-2149256898.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mira Benrabah",
|
||||
role: "Local Patron",
|
||||
quote: "Tres copieux, ingrédients de qualité avec beaucoup de variété. Meilleur rapport qualité prix.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-meal_23-2148142541.jpg",
|
||||
},
|
||||
{
|
||||
name: "Zakaria J.",
|
||||
role: "Connoisseur",
|
||||
quote: "Une adresse incontournable à Hydra. Le service est rapide et toujours avec le sourire.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-man-having-meal-restaurant_23-2148214633.jpg",
|
||||
},
|
||||
{
|
||||
name: "Amine S.",
|
||||
role: "Regular Guest",
|
||||
quote: "Le meilleur endroit pour les amoureux de sushi. Les yakisoba sont incroyables !",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-family-enjoying-new-year-party_23-2149173249.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user