diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 49e6b95..92d884b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,28 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "DropHub - Start Your Dropshipping Business Today", description: "Launch your e-commerce empire with DropHub. Zero inventory, zero risk. Connect with suppliers, manage orders, and earn passive income with our all-in-one dropshipping platform.", keywords: "dropshipping, ecommerce, online store, passive income, supplier platform", metadataBase: new URL("https://drophub.io"),
- alternates: {
- canonical: "https://drophub.io"},
- openGraph: {
- title: "DropHub - Dropshipping Made Simple", description: "Build a profitable online store without inventory. Join thousands of successful sellers.", url: "https://drophub.io", siteName: "DropHub", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg", alt: "DropHub platform showcase"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "DropHub - Start Dropshipping Today", description: "Zero inventory. Zero risk. Pure profit.", images: ["http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 95bdcb0..be9d4cd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
-import { Zap, Users, ShoppingCart, TrendingUp } from "lucide-react";
+import { Zap, Users, ShoppingCart, TrendingUp, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -50,11 +50,14 @@ export default function LandingPage() {
background={{ variant: "plain" }}
mediaItems={[
{
- imageSrc: "http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg", imageAlt: "Dropshipping dashboard showcase"},
+ imageSrc: "http://img.b2bpic.net/free-vector/purchase-online-interface-concept_23-2148664689.jpg", imageAlt: "Dropshipping dashboard showcase"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17246.jpg", imageAlt: "Product collection display"},
+ imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17246.jpg", imageAlt: "Product collection display"
+ },
{
- imageSrc: "http://img.b2bpic.net/free-photo/view-essentials-pottery-studio_23-2150164906.jpg", imageAlt: "Premium products"},
+ imageSrc: "http://img.b2bpic.net/free-photo/view-essentials-pottery-studio_23-2150164906.jpg", imageAlt: "Premium products"
+ },
]}
mediaAnimation="blur-reveal"
buttons={[
@@ -68,6 +71,8 @@ export default function LandingPage() {