diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b32a6a..c85b9ec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,7 +12,7 @@ import { Montserrat } from "next/font/google"; export const metadata: Metadata = { title: 'Menta Group', - description: 'Strategic business solutions and corporate growth consulting.', + description: 'Excellence in business solutions, strategy, and corporate growth.', }; const montserrat = Montserrat({ diff --git a/src/app/page.tsx b/src/app/page.tsx index 832d1e7..13dd2ec 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,151 +1,50 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -export default function HomePage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "#about" }, - { name: "Services", id: "#services" }, - { name: "Contact", id: "#contact" } - ]; +const navItems = [{ name: "Home", id: "/" }]; +export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
);