Merge version_2 into main #2
@@ -1,57 +1,38 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CarSwap.lk – Sell Your Vehicle Fast in Sri Lanka", description: "Sell your car, bike, or vehicle faster with CarSwap.lk. Professional advertising across TikTok, Facebook & Instagram. Affordable packages starting Rs.1,000. Get buyers in 24-48 hours.", keywords: "vehicle advertising, sell car Sri Lanka, automotive marketplace, car for sale, quick vehicle sale, social media promotion", metadataBase: new URL("https://carswap.lk"),
|
||||
alternates: {
|
||||
canonical: "https://carswap.lk"},
|
||||
openGraph: {
|
||||
title: "CarSwap.lk – Sell Your Vehicle Fast", description: "Professional vehicle advertising platform in Sri Lanka. Reach thousands of buyers. Affordable packages. Results guaranteed.", url: "https://carswap.lk", siteName: "CarSwap.lk", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/feeling-good-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16520.jpg", alt: "CarSwap.lk - Sell Your Vehicle Fast"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CarSwap.lk – Sell Your Vehicle Fast", description: "Professional vehicle advertising platform in Sri Lanka. Reach thousands of buyers. Results in days, not weeks.", images: ["http://img.b2bpic.net/free-photo/feeling-good-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16520.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "CarSwap.lk - Sell Your Vehicle Fast in Sri Lanka", description: "Sell your car faster with CarSwap.lk. Promote your vehicle across TikTok, Facebook, and Instagram to thousands of buyers. Affordable advertising packages starting at Rs.1,000."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
(function() {
|
||||
try {
|
||||
const stored = localStorage.getItem('theme');
|
||||
if (stored === 'dark' || (!stored && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark');
|
||||
}
|
||||
} catch (e) {}
|
||||
})();
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1400,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -52,13 +52,13 @@ export default function LandingPage() {
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/feeling-good-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16520.jpg", imageAlt: "Luxury vehicle showcase for CarSwap.lk"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeNpa8U4y6Fg1AJpkxfH4f7yX9/uploaded-1772949707081-keez0wx6.jpg", imageAlt: "CarSwap.lk logo and branding"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-white-luxury-car_181624-23559.jpg", imageAlt: "Premium automotive advertising platform"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeNpa8U4y6Fg1AJpkxfH4f7yX9/uploaded-1772949707081-keez0wx6.jpg", imageAlt: "CarSwap.lk vehicle advertising platform"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-choosing-car-car-showroom_1303-17456.jpg", imageAlt: "High-end vehicle marketplace CarSwap.lk"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeNpa8U4y6Fg1AJpkxfH4f7yX9/uploaded-1772949707081-keez0wx6.jpg", imageAlt: "CarSwap.lk social media reach"
|
||||
}
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
|
||||
Reference in New Issue
Block a user