Merge version_2_1782057349996 into main #1
@@ -5,15 +5,15 @@
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #f5f5f5;
|
||||
--primary-cta: #ffdf7d;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--background: #0a120d;
|
||||
--card: #111f17;
|
||||
--foreground: #e8f5e9;
|
||||
--primary-cta: #4ade80;
|
||||
--primary-cta-text: #022c22;
|
||||
--secondary-cta: #111f17;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #b8860b;
|
||||
--background-accent: #8b6914;
|
||||
--accent: #22c55e;
|
||||
--background-accent: #14532d;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 0.5rem;
|
||||
|
||||
@@ -1,229 +1,36 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
||||
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
||||
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
||||
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 PricingSection from './HomePage/sections/Pricing';
|
||||
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">
|
||||
<HeroBrand
|
||||
brand="Grand Luxury Hotel"
|
||||
description="Experience unparalleled comfort and elegance in the heart of the city. Your sanctuary away from home."
|
||||
primaryButton={{
|
||||
text: "Reserve Your Suite",
|
||||
href: "#pricing",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Gallery",
|
||||
href: "#about",
|
||||
}}
|
||||
imageSrc="https://images.pexels.com/photos/14547138/pexels-photo-14547138.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="A Legacy of Excellence in Hospitality"
|
||||
primaryButton={{
|
||||
text: "Our Story",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesComparison
|
||||
tag="Experience Difference"
|
||||
title="Why Choose Us?"
|
||||
description="We offer a unique blend of modern luxury and historic charm."
|
||||
negativeItems={[
|
||||
"Traffic noise",
|
||||
"Generic decor",
|
||||
"Limited service",
|
||||
]}
|
||||
positiveItems={[
|
||||
"Soundproof suites",
|
||||
"Custom interiors",
|
||||
"24/7 concierge",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingMediaCards
|
||||
tag="Suites"
|
||||
title="Choose Your Sanctuary"
|
||||
description="Exquisite rooms tailored for your comfort."
|
||||
plans={[
|
||||
{
|
||||
tag: "Classic",
|
||||
price: "$299",
|
||||
period: "/night",
|
||||
features: [
|
||||
"King size bed",
|
||||
"City view",
|
||||
"Free breakfast",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/6394710/pexels-photo-6394710.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
tag: "Premium",
|
||||
price: "$499",
|
||||
period: "/night",
|
||||
features: [
|
||||
"Panoramic view",
|
||||
"Spa access",
|
||||
"Valet service",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/28054852/pexels-photo-28054852.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
tag: "Deluxe",
|
||||
price: "$899",
|
||||
period: "/night",
|
||||
features: [
|
||||
"Private terrace",
|
||||
"Personal butler",
|
||||
"Luxury spa",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/20106716/pexels-photo-20106716.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<PricingSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Experience Stats"
|
||||
title="Hospitality in Numbers"
|
||||
description="Decades of serving excellence."
|
||||
metrics={[
|
||||
{
|
||||
value: "50+",
|
||||
description: "Luxury Rooms",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
description: "Guest Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
description: "Concierge Service",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialColumnMarqueeCards
|
||||
tag="Reviews"
|
||||
title="What Our Guests Say"
|
||||
testimonials={[
|
||||
{
|
||||
name: "John Doe",
|
||||
role: "Traveler",
|
||||
quote: "The best hotel stay of my life.",
|
||||
imageSrc: "https://images.pexels.com/photos/5378695/pexels-photo-5378695.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Jane Smith",
|
||||
role: "Business Trip",
|
||||
quote: "Seamless, luxury and quiet.",
|
||||
imageSrc: "https://images.pexels.com/photos/4173354/pexels-photo-4173354.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Robert Fox",
|
||||
role: "Vacationer",
|
||||
quote: "Absolute perfection in every detail.",
|
||||
imageSrc: "https://images.pexels.com/photos/3778609/pexels-photo-3778609.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Alice Wong",
|
||||
role: "Guest",
|
||||
quote: "Will definitely return next season.",
|
||||
imageSrc: "https://images.pexels.com/photos/13801777/pexels-photo-13801777.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Mark Hamill",
|
||||
role: "Executive",
|
||||
quote: "Professional, clean, and top-tier.",
|
||||
imageSrc: "https://images.pexels.com/photos/7820312/pexels-photo-7820312.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
]}
|
||||
description="Hear from those who have experienced our unique hospitality."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSimple
|
||||
tag="Support"
|
||||
title="Frequently Asked Questions"
|
||||
items={[
|
||||
{
|
||||
question: "What is the check-in time?",
|
||||
answer: "Check-in is at 3:00 PM.",
|
||||
},
|
||||
{
|
||||
question: "Are pets allowed?",
|
||||
answer: "We welcome pets in select suites.",
|
||||
},
|
||||
{
|
||||
question: "Is parking available?",
|
||||
answer: "Yes, we offer complimentary valet parking.",
|
||||
},
|
||||
]}
|
||||
description="Answers to common inquiries regarding our services."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Book Now"
|
||||
text="Start your journey with us today."
|
||||
primaryButton={{
|
||||
text: "Contact Front Desk",
|
||||
href: "tel:5550000",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Send Email",
|
||||
href: "mailto:info@grandhotel.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="A Legacy of Excellence in Hospitality"
|
||||
primaryButton={{
|
||||
text: "Our Story",
|
||||
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="Book Now"
|
||||
text="Start your journey with us today."
|
||||
primaryButton={{
|
||||
text: "Contact Front Desk",
|
||||
href: "tel:5550000",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Send Email",
|
||||
href: "mailto:info@grandhotel.com",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
34
src/pages/HomePage/sections/Faq.tsx
Normal file
34
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
// 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 FaqSimple from '@/components/sections/faq/FaqSimple';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSimple
|
||||
tag="Support"
|
||||
title="Frequently Asked Questions"
|
||||
items={[
|
||||
{
|
||||
question: "What is the check-in time?",
|
||||
answer: "Check-in is at 3:00 PM.",
|
||||
},
|
||||
{
|
||||
question: "Are pets allowed?",
|
||||
answer: "We welcome pets in select suites.",
|
||||
},
|
||||
{
|
||||
question: "Is parking available?",
|
||||
answer: "Yes, we offer complimentary valet parking.",
|
||||
},
|
||||
]}
|
||||
description="Answers to common inquiries regarding our services."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
30
src/pages/HomePage/sections/Features.tsx
Normal file
30
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
// 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 FeaturesComparison from '@/components/sections/features/FeaturesComparison';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesComparison
|
||||
tag="Experience Difference"
|
||||
title="Why Choose Us?"
|
||||
description="We offer a unique blend of modern luxury and historic charm."
|
||||
negativeItems={[
|
||||
"Traffic noise",
|
||||
"Generic decor",
|
||||
"Limited service",
|
||||
]}
|
||||
positiveItems={[
|
||||
"Soundproof suites",
|
||||
"Custom interiors",
|
||||
"24/7 concierge",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Hero.tsx
Normal file
28
src/pages/HomePage/sections/Hero.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 "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBrand
|
||||
brand="Grand Luxury Hotel"
|
||||
description="Experience unparalleled comfort and elegance in the heart of the city. Your sanctuary away from home."
|
||||
primaryButton={{
|
||||
text: "Reserve Your Suite",
|
||||
href: "#pricing",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Gallery",
|
||||
href: "#about",
|
||||
}}
|
||||
imageSrc="https://images.pexels.com/photos/14547138/pexels-photo-14547138.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
34
src/pages/HomePage/sections/Metrics.tsx
Normal file
34
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
// 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 MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Experience Stats"
|
||||
title="Hospitality in Numbers"
|
||||
description="Decades of serving excellence."
|
||||
metrics={[
|
||||
{
|
||||
value: "50+",
|
||||
description: "Luxury Rooms",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
description: "Guest Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
description: "Concierge Service",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
67
src/pages/HomePage/sections/Pricing.tsx
Normal file
67
src/pages/HomePage/sections/Pricing.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "pricing" section.
|
||||
|
||||
import React from 'react';
|
||||
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function PricingSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingMediaCards
|
||||
tag="Suites"
|
||||
title="Choose Your Sanctuary"
|
||||
description="Exquisite rooms tailored for your comfort."
|
||||
plans={[
|
||||
{
|
||||
tag: "Classic",
|
||||
price: "$299",
|
||||
period: "/night",
|
||||
features: [
|
||||
"King size bed",
|
||||
"City view",
|
||||
"Free breakfast",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/6394710/pexels-photo-6394710.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
tag: "Premium",
|
||||
price: "$499",
|
||||
period: "/night",
|
||||
features: [
|
||||
"Panoramic view",
|
||||
"Spa access",
|
||||
"Valet service",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/28054852/pexels-photo-28054852.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
tag: "Deluxe",
|
||||
price: "$899",
|
||||
period: "/night",
|
||||
features: [
|
||||
"Private terrace",
|
||||
"Personal butler",
|
||||
"Luxury spa",
|
||||
],
|
||||
primaryButton: {
|
||||
text: "Select",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://images.pexels.com/photos/20106716/pexels-photo-20106716.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</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 TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialColumnMarqueeCards
|
||||
tag="Reviews"
|
||||
title="What Our Guests Say"
|
||||
testimonials={[
|
||||
{
|
||||
name: "John Doe",
|
||||
role: "Traveler",
|
||||
quote: "The best hotel stay of my life.",
|
||||
imageSrc: "https://images.pexels.com/photos/5378695/pexels-photo-5378695.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Jane Smith",
|
||||
role: "Business Trip",
|
||||
quote: "Seamless, luxury and quiet.",
|
||||
imageSrc: "https://images.pexels.com/photos/4173354/pexels-photo-4173354.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Robert Fox",
|
||||
role: "Vacationer",
|
||||
quote: "Absolute perfection in every detail.",
|
||||
imageSrc: "https://images.pexels.com/photos/3778609/pexels-photo-3778609.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Alice Wong",
|
||||
role: "Guest",
|
||||
quote: "Will definitely return next season.",
|
||||
imageSrc: "https://images.pexels.com/photos/13801777/pexels-photo-13801777.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
{
|
||||
name: "Mark Hamill",
|
||||
role: "Executive",
|
||||
quote: "Professional, clean, and top-tier.",
|
||||
imageSrc: "https://images.pexels.com/photos/7820312/pexels-photo-7820312.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
|
||||
},
|
||||
]}
|
||||
description="Hear from those who have experienced our unique hospitality."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user