Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 07:31:21 +00:00
2 changed files with 14 additions and 32 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Automotion Cars Europa | Curated European Automotive Listings", description: "A selective platform connecting serious buyers with trusted dealerships across Europe. Transparency, credibility, and professional partnerships.", keywords: "european cars, automotive listings, dealership platform, curated vehicles, europe", robots: {
index: true,
follow: true,
},
};
title: "Automotion Cars Europa | Curated European Automotive Listings", description: "A selective platform connecting serious buyers with trusted dealerships across Europe."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -44,6 +44,14 @@ export default function LandingPage() {
buttons={[
{ text: "Explore Listings", href: "#network" }
]}
avatars={[
{ src: "https://api.dicebear.com/7.x/avataaars/svg?seed=buyer1", alt: "European buyer" },
{ src: "https://api.dicebear.com/7.x/avataaars/svg?seed=buyer2", alt: "European buyer" },
{ src: "https://api.dicebear.com/7.x/avataaars/svg?seed=buyer3", alt: "European buyer" },
{ src: "https://api.dicebear.com/7.x/avataaars/svg?seed=buyer4", alt: "European buyer" },
{ src: "https://api.dicebear.com/7.x/avataaars/svg?seed=buyer5", alt: "European buyer" }
]}
avatarText="500+ European buyers trust us"
mediaAnimation="none"
imagePosition="right"
fixedMediaHeight={false}