Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-04-07 09:57:42 +00:00

View File

@@ -10,7 +10,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function HomePage() {
const navItems = [{ name: 'Home', id: '/' }];
const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Contact', id: '/contact' }];
return (
<ThemeProvider
@@ -86,7 +86,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Webild"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ThemeProvider>