Merge version_1_1781704915619 into main

Merge version_1_1781704915619 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-17 14:03:03 +00:00

View File

@@ -7,115 +7,61 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Experience",
"href": "#experience"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ "name": "About", "href": "#about" },
{ "name": "Experience", "href": "#experience" },
{ "name": "Services", "href": "#services" },
{ "name": "Contact", "href": "#contact" },
{ "name": "Hero", "href": "#hero" },
{ "name": "Metrics", "href": "#metrics" },
{ "name": "Testimonials", "href": "#testimonials" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Portfolio"
ctaButton={{
text: "Hire Me",
href: "#contact",
}}
navItems={navItems} />
logo="Portfolio"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=o6wl2q"
ctaButton={{
text: "Hire Me", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Portfolio Professional"
columns={[
{
title: "Navigation",
items: [
brand="Portfolio Professional"
columns={[
{
label: "About",
href: "#about",
title: "Navigation", items: [
{ label: "About", href: "#about" },
{ label: "Experience", href: "#experience" },
{ label: "Services", href: "#services" },
],
},
{
label: "Experience",
href: "#experience",
title: "Connect", items: [
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "GitHub", href: "https://github.com" },
],
},
{
label: "Services",
href: "#services",
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
],
},
{
title: "Connect",
items: [
{
label: "LinkedIn",
href: "https://linkedin.com",
},
{
label: "Twitter",
href: "https://twitter.com",
},
{
label: "GitHub",
href: "https://github.com",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Professional Portfolio. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
]}
copyright="© 2024 Professional Portfolio. All rights reserved."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);