Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6aa064f318 | |||
| 87905cc9f3 | |||
| d30a74481a | |||
| a4b39745f7 | |||
| e56cf26a51 |
@@ -1,50 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Lato } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "COPYBOT makes cloning Discord servers effortless with advanced features, real-time tracking, and selective copying. Clone roles, channels, categories in seconds.", keywords: "discord, server cloner, duplicate server, discord bot, server management, discord automation", openGraph: {
|
title: "COPYBOT - Discord Server Cloning Made Easy", description: "Clone your Discord servers in 3 clicks with real-time tracking and selective copying. Advanced automation for server management."};
|
||||||
title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "Advanced Discord server cloning with real-time tracking and selective copying. Start free.", type: "website", siteName: "COPYBOT"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "Clone your Discord servers in seconds with COPYBOT. Real-time tracking and selective copying."},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,7 +83,9 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "One-Click Server Duplication", description: "Create an exact replica of your server structure instantly. Perfect for backups, testing, or scaling your Discord community.", imageSrc: "http://img.b2bpic.net/free-photo/programming-background-concept_23-2150170128.jpg?_wi=2", imageAlt: "One-click cloning interface"
|
title: "One-Click Server Duplication", description: "Create an exact replica of your server structure instantly. Perfect for backups, testing, or scaling your Discord community.", imageSrc: "http://img.b2bpic.net/free-photo/programming-background-concept_23-2150170128.jpg?_wi=2", imageAlt: "One-click cloning interface", buttons: [
|
||||||
|
{ text: "Start Your Free Clone", href: "#cta" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user