Merge version_1_1781565740917 into main #1

Merged
bender merged 2 commits from version_1_1781565740917 into main 2026-06-15 23:23:29 +00:00

View File

@@ -7,89 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#services"
},
{
"name": "Portfolio",
"href": "#portfolio"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Faq",
"href": "#faq"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Hero", href: "#hero" },
{ name: "Services", href: "#services" },
{ name: "Portfolio", href: "#portfolio" },
{ name: "About", href: "#about" },
{ name: "Metrics", href: "#metrics" },
{ name: "FAQ", href: "#faq" },
{ name: "Contact", href: "#contact" }
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarCentered
logo="Prauha"
ctaButton={{
text: "WhatsApp",
href: "https://wa.me/919026089417",
}}
navItems={navItems} />
logo="Prauha"
ctaButton={{
text: "WhatsApp", href: "https://wa.me/919026089417"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Prauha"
columns={[
{
title: "Services",
items: [
brand="Prauha"
columns={[
{
label: "Basic Website",
href: "#services",
title: "Services", items: [
{ label: "Basic Website", href: "#services" },
{ label: "Premium Website", href: "#services" },
{ label: "Booking Sites", href: "#services" },
],
},
{
label: "Premium Website",
href: "#services",
title: "Contact", items: [
{ label: "WhatsApp", href: "https://wa.me/919026089417" },
{ label: "Email", href: "mailto:palakdusiya@gmail.com" },
],
},
{
label: "Booking Sites",
href: "#services",
},
],
},
{
title: "Contact",
items: [
{
label: "WhatsApp",
href: "https://wa.me/919026089417",
},
{
label: "Email",
href: "mailto:palakdusiya@gmail.com",
},
],
},
]}
copyright="© 2024 Prauha. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/business-concept-with-graphic-holography_23-2149160928.jpg"
/>
]}
copyright="© 2024 Prauha. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/business-concept-with-graphic-holography_23-2149160928.jpg"
links={[]}
/>
</SectionErrorBoundary>
</StyleProvider>
);