Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/comprehensive-dashboard-showing-multiple-1773603690774-1f7a3997.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/comprehensive-dashboard-showing-multiple-1773603690774-1f7a3997.png?_wi=2"
|
||||
imageAlt="Features dashboard"
|
||||
accordionItems={[
|
||||
{
|
||||
@@ -144,37 +144,37 @@ export default function AboutPage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Martinez",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603689884-6cf8ca53.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603689884-6cf8ca53.png?_wi=2",
|
||||
imageAlt: "Sarah Martinez",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Chen",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689904-102cc21b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689904-102cc21b.png?_wi=2",
|
||||
imageAlt: "James Chen",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emma Thompson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603690253-4328aae2.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603690253-4328aae2.png?_wi=2",
|
||||
imageAlt: "Emma Thompson",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Marcus Johnson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689268-60b635c7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689268-60b635c7.png?_wi=2",
|
||||
imageAlt: "Marcus Johnson",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Lisa Anderson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603691831-78854dda.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603691831-78854dda.png?_wi=2",
|
||||
imageAlt: "Lisa Anderson",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "David Kim",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689927-8ba8fc03.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689927-8ba8fc03.png?_wi=2",
|
||||
imageAlt: "David Kim",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,29 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DropShip AI - 24/7 AI-Powered Dropshipping Platform",
|
||||
description: "Launch your dropshipping store with AI-powered sales automation. Sell anything without inventory. 24/7 AI assistant. No stock required.",
|
||||
keywords: "dropshipping, AI sales, e-commerce automation, online store, passive income",
|
||||
openGraph: {
|
||||
title: "DropShip AI - Automated Dropshipping & AI Sales",
|
||||
description: "24/7 AI-powered dropshipping platform. Sell without inventory. Automate your entire store.",
|
||||
siteName: "DropShip AI",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-e-commerce-dashboard-showing-sale-1773603690635-a85321b8.png",
|
||||
alt: "DropShip AI Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "DropShip AI - Automated E-Commerce Platform",
|
||||
description: "24/7 AI sales automation. Sell without inventory. Start free.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-e-commerce-dashboard-showing-sale-1773603690635-a85321b8.png",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +63,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +77,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
price: "$89.99",
|
||||
rating: 5,
|
||||
reviewCount: "2,340",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/high-quality-product-image-of-a-sleek-sm-1773603689285-43576475.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/high-quality-product-image-of-a-sleek-sm-1773603689285-43576475.png?_wi=1",
|
||||
imageAlt: "High-quality product image of a sleek smart watch with modern design",
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ export default function HomePage() {
|
||||
price: "$79.99",
|
||||
rating: 4.8,
|
||||
reviewCount: "1,890",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-travel-backpack-in-dark-color-wi-1773603689743-a8f1d80a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-travel-backpack-in-dark-color-wi-1773603689743-a8f1d80a.png?_wi=1",
|
||||
imageAlt: "Premium travel backpack in dark color with multiple compartments",
|
||||
},
|
||||
{
|
||||
@@ -167,7 +167,7 @@ export default function HomePage() {
|
||||
price: "$59.99",
|
||||
rating: 4.9,
|
||||
reviewCount: "3,120",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/wireless-earbuds-with-charging-case-in-p-1773603689718-8ea6bcd5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/wireless-earbuds-with-charging-case-in-p-1773603689718-8ea6bcd5.png?_wi=1",
|
||||
imageAlt: "Wireless earbuds with charging case in premium finish",
|
||||
},
|
||||
{
|
||||
@@ -177,7 +177,7 @@ export default function HomePage() {
|
||||
price: "$44.99",
|
||||
rating: 4.7,
|
||||
reviewCount: "1,540",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-led-desk-lamp-with-adjustable-bri-1773603689702-d5a76feb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-led-desk-lamp-with-adjustable-bri-1773603689702-d5a76feb.png?_wi=1",
|
||||
imageAlt: "Modern LED desk lamp with adjustable brightness",
|
||||
},
|
||||
{
|
||||
@@ -187,7 +187,7 @@ export default function HomePage() {
|
||||
price: "$34.99",
|
||||
rating: 4.6,
|
||||
reviewCount: "890",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-yoga-mat-in-calming-neutral-colo-1773603689761-d71d8453.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-yoga-mat-in-calming-neutral-colo-1773603689761-d71d8453.png?_wi=1",
|
||||
imageAlt: "Premium yoga mat in calming neutral color",
|
||||
},
|
||||
{
|
||||
@@ -197,7 +197,7 @@ export default function HomePage() {
|
||||
price: "$24.99",
|
||||
rating: 4.8,
|
||||
reviewCount: "2,100",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/minimalist-phone-stand-in-aluminum-holds-1773603689525-1824f57f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/minimalist-phone-stand-in-aluminum-holds-1773603689525-1824f57f.png?_wi=1",
|
||||
imageAlt: "Minimalist phone stand in aluminum",
|
||||
},
|
||||
]}
|
||||
@@ -214,7 +214,7 @@ export default function HomePage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/comprehensive-dashboard-showing-multiple-1773603690774-1f7a3997.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/comprehensive-dashboard-showing-multiple-1773603690774-1f7a3997.png?_wi=1"
|
||||
imageAlt="Comprehensive dashboard showing multiple features"
|
||||
accordionItems={[
|
||||
{
|
||||
@@ -267,37 +267,37 @@ export default function HomePage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Martinez",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603689884-6cf8ca53.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603689884-6cf8ca53.png?_wi=1",
|
||||
imageAlt: "Professional headshot of Sarah Martinez",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Chen",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689904-102cc21b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689904-102cc21b.png?_wi=1",
|
||||
imageAlt: "Professional headshot of James Chen",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emma Thompson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603690253-4328aae2.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603690253-4328aae2.png?_wi=1",
|
||||
imageAlt: "Professional headshot of Emma Thompson",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Marcus Johnson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689268-60b635c7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689268-60b635c7.png?_wi=1",
|
||||
imageAlt: "Professional headshot of Marcus Johnson",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Lisa Anderson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603691831-78854dda.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-wom-1773603691831-78854dda.png?_wi=1",
|
||||
imageAlt: "Professional headshot of Lisa Anderson",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "David Kim",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689927-8ba8fc03.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/professional-headshot-of-a-confident-man-1773603689927-8ba8fc03.png?_wi=1",
|
||||
imageAlt: "Professional headshot of David Kim",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -106,7 +106,7 @@ export default function ProductsPage() {
|
||||
price: "$89.99",
|
||||
rating: 5,
|
||||
reviewCount: "2,340",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/high-quality-product-image-of-a-sleek-sm-1773603689285-43576475.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/high-quality-product-image-of-a-sleek-sm-1773603689285-43576475.png?_wi=2",
|
||||
imageAlt: "High-quality product image of a sleek smart watch with modern design",
|
||||
},
|
||||
{
|
||||
@@ -116,7 +116,7 @@ export default function ProductsPage() {
|
||||
price: "$79.99",
|
||||
rating: 4.8,
|
||||
reviewCount: "1,890",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-travel-backpack-in-dark-color-wi-1773603689743-a8f1d80a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-travel-backpack-in-dark-color-wi-1773603689743-a8f1d80a.png?_wi=2",
|
||||
imageAlt: "Premium travel backpack in dark color with multiple compartments",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function ProductsPage() {
|
||||
price: "$59.99",
|
||||
rating: 4.9,
|
||||
reviewCount: "3,120",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/wireless-earbuds-with-charging-case-in-p-1773603689718-8ea6bcd5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/wireless-earbuds-with-charging-case-in-p-1773603689718-8ea6bcd5.png?_wi=2",
|
||||
imageAlt: "Wireless earbuds with charging case in premium finish",
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@ export default function ProductsPage() {
|
||||
price: "$44.99",
|
||||
rating: 4.7,
|
||||
reviewCount: "1,540",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-led-desk-lamp-with-adjustable-bri-1773603689702-d5a76feb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/modern-led-desk-lamp-with-adjustable-bri-1773603689702-d5a76feb.png?_wi=2",
|
||||
imageAlt: "Modern LED desk lamp with adjustable brightness",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function ProductsPage() {
|
||||
price: "$34.99",
|
||||
rating: 4.6,
|
||||
reviewCount: "890",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-yoga-mat-in-calming-neutral-colo-1773603689761-d71d8453.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/premium-yoga-mat-in-calming-neutral-colo-1773603689761-d71d8453.png?_wi=2",
|
||||
imageAlt: "Premium yoga mat in calming neutral color",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function ProductsPage() {
|
||||
price: "$24.99",
|
||||
rating: 4.8,
|
||||
reviewCount: "2,100",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/minimalist-phone-stand-in-aluminum-holds-1773603689525-1824f57f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azm9WmWY5mWAJKwzZQ1jpdHz6V/minimalist-phone-stand-in-aluminum-holds-1773603689525-1824f57f.png?_wi=2",
|
||||
imageAlt: "Minimalist phone stand in aluminum",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user