From 71d9d2104c0e6acdf2b1275055325330d9ebae40 Mon Sep 17 00:00:00 2001 From: georg-njaa Date: Wed, 1 Apr 2026 07:18:37 +0200 Subject: [PATCH] [General]: Under Maintenance page has been added. --- src/components/Navigation.tsx | 14 ++--- src/components/sections/FooterSection.tsx | 12 ++-- src/components/sections/HeroSection.tsx | 4 +- src/components/sections/InsightsSection.tsx | 4 +- src/components/sections/ServicesSection.tsx | 7 ++- src/pages/index.astro | 40 ++++++------ src/pages/under-construction.astro | 69 +++++++++++++++++++++ 7 files changed, 110 insertions(+), 40 deletions(-) create mode 100644 src/pages/under-construction.astro diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index f048333..695696b 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -23,17 +23,17 @@ export default function Navigation() { }, [isOpen]); const links = [ - { name: 'Portfolio', href: '#' }, - { name: 'Solutions', href: '#' }, - { name: 'Legal Notice', href: '#' }, + { name: 'Portfolio', href: '/under-construction' }, + { name: 'Solutions', href: '/under-construction' }, + { name: 'Legal Notice', href: '/under-construction' }, ]; return (