Merge version_2 into main #4
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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 - 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,
|
||||
},
|
||||
};
|
||||
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."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -83,7 +83,9 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user