diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4ef98cc..b700c91 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,88 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Team", - "href": "#team" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonial", - "href": "#testimonial" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Team", href: "#team" }, + { name: "Contact", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonial", href: "#testimonial" } + ]; return ( + logo="Tumaini School" + logoImageSrc="http://img.b2bpic.net/free-photo/portrait-schoolgirl-with-big-notepad-template_23-2148203853.jpg" + ctaButton={{ + text: "Enroll Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="Tumaini Senior Secondary School" + rightText="© 2024 Tumaini Senior Secondary School. All rights reserved." + />
);