Merge version_1_1782838771817 into main #1

Merged
bender merged 2 commits from version_1_1782838771817 into main 2026-06-30 17:00:43 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#"
"name": "Home", "href": "#"
},
{
"name": "À Propos",
"href": "#about"
"name": "À Propos", "href": "#about"
},
{
"name": "Services",
"href": "#features"
"name": "Services", "href": "#features"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Flormar Tanger"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=uflalq"
ctaButton={{
text: "Itinéraire",
href: "#contact",
}}
text: "Itinéraire", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,29 +48,19 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Flormar Tanger",
items: [
title: "Flormar Tanger", items: [
{
label: "À propos",
href: "#about",
},
label: "À propos", href: "#about"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
{
title: "Légal",
items: [
title: "Légal", items: [
{
label: "Mentions Légales",
href: "#",
},
label: "Mentions Légales", href: "#"},
{
label: "Confidentialité",
href: "#",
},
label: "Confidentialité", href: "#"},
],
},
]}