diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 44c6baa..419803c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,17 +1,17 @@
import type { Metadata } from "next";
-import { Roboto } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Poppins } from "next/font/google";
+import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
+const poppins = Poppins({
+ variable: "--font-poppins", subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const montserrat = Montserrat({
+ variable: "--font-montserrat", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -42,7 +42,7 @@ export default function RootLayout({
{children}
@@ -1417,4 +1417,4 @@ export default function RootLayout({
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e090677..8247558 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,4 +1,4 @@
-"use client"
+"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -6,11 +6,11 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
+import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
-import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
-import { Award, CheckCircle, Flower2, Gift, Heart, Leaf, Mail, Package, Palette, Sparkles, Sprout, Star, Zap } from "lucide-react";
+import { Award, CheckCircle, Flower2, Gift, Heart, Leaf, Mail, Package, Palette, Sparkles, Sprout, Star, Users, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,46 +29,46 @@ export default function LandingPage() {
@@ -134,35 +134,59 @@ export default function LandingPage() {
+
+
+
+
@@ -170,92 +194,76 @@ export default function LandingPage() {
-
-
-
-