Merge version_2 into main #4
@@ -1,43 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish, Inter } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones. Durable, stylish, and eco-friendly protection for your devices.", keywords: "laptop cases, mobile phone cases, protective cases, device protection, premium cases", openGraph: {
|
||||
title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones. Where protection meets perfection.", siteName: "CaseForce", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/diary-pencil-tablet_1156-56.jpg", alt: "CaseForce Premium Cases"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones.", images: ["http://img.b2bpic.net/free-photo/diary-pencil-tablet_1156-56.jpg"],
|
||||
},
|
||||
};
|
||||
title: "CaseForce - Premium Protective Cases", description: "Hand-picked protective cases trusted by 50,000+ users worldwide. Premium quality meets affordability."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -157,7 +157,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
title="Our Product Range"
|
||||
description="Hand-picked protective cases for every device. Premium quality meets affordability."
|
||||
description="Hand-picked cases trusted by 50,000+ users worldwide—premium quality meets affordability."
|
||||
tag="Shop Collection"
|
||||
tagIcon={ShoppingBag}
|
||||
tagAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user