Merge version_1_1782229831230 into main #1

Merged
bender merged 1 commits from version_1_1782229831230 into main 2026-06-23 15:51:35 +00:00

View File

@@ -7,96 +7,52 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Academic",
"href": "#features"
},
{
"name": "Team",
"href": "#team"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Reveal Cards",
"href": "#reveal-cards"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "About", href: "#about" },
{ name: "Academic", href: "#features" },
{ name: "Team", href: "#team" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Hero", href: "#hero" },
{ name: "Reveal Cards", href: "#reveal-cards" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="expand" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Alpha Vidhya Sankul"
ctaButton={{
text: "Enroll Now",
href: "#contact",
}}
navItems={navItems} />
logo="Alpha Vidhya Sankul"
logoImageSrc="http://img.b2bpic.net/free-photo/wisconsin-flag-with-banner_187299-35555.jpg"
ctaButton={{
text: "Enroll Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Quick Links",
items: [
columns={[
{
label: "About",
href: "#about",
title: "Quick Links", items: [
{ label: "About", href: "#about" },
{ label: "Academics", href: "#features" },
{ label: "Facilities", href: "#reveal-cards" },
{ label: "Admissions", href: "#contact" },
],
},
{
label: "Academics",
href: "#features",
title: "Contact Us", items: [
{ label: "Jam Khambhalia, Gujarat", href: "#" },
{ label: "info@alphavidhya.edu", href: "mailto:info@alphavidhya.edu" },
{ label: "+91 99999 99999", href: "tel:+919999999999" },
],
},
{
label: "Facilities",
href: "#reveal-cards",
},
{
label: "Admissions",
href: "#contact",
},
],
},
{
title: "Contact Us",
items: [
{
label: "Jam Khambhalia, Gujarat",
href: "#",
},
{
label: "info@alphavidhya.edu",
href: "mailto:info@alphavidhya.edu",
},
{
label: "+91 99999 99999",
href: "tel:+919999999999",
},
],
},
]}
leftText="© 2024 Alpha Vidhya Sankul."
rightText="Designed with care for holistic development."
/>
]}
leftText="© 2024 Alpha Vidhya Sankul."
rightText="Designed with care for holistic development."
/>
</SectionErrorBoundary>
</StyleProvider>
);