Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b2d821edb | |||
| f8a4017cf0 | |||
| 719e2713de | |||
| 6bc1897d74 | |||
| a9746bae08 | |||
| e19c2e4f5a |
@@ -1,61 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Archivo } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-archivo",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AviCoding - Web Design & Development Agency",
|
title: "AviCoding | Web Design & Development for European Businesses", description: "Professional web design and development services for WordPress sites, e-commerce stores, and landing pages. Serving European businesses with high-converting websites."};
|
||||||
description: "Premium web design, WordPress development, and e-commerce solutions for European businesses. Custom websites that convert visitors into clients.",
|
|
||||||
keywords: "web design, web development, WordPress, e-commerce, landing pages, Serbia, Europe",
|
|
||||||
metadataBase: new URL("https://avicoding.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://avicoding.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AviCoding - Web Design & Development Agency",
|
|
||||||
description: "Build high-converting websites that grow your business. Professional web design and development services across Europe.",
|
|
||||||
url: "https://avicoding.com",
|
|
||||||
siteName: "AviCoding",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQoiK0cfH6yVn0KJDPULLa1Z6v/a-modern-premium-web-design-and-developm-1772534363140-b2bf1f7a.png",
|
|
||||||
alt: "AviCoding - Premium Web Design & Development",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "AviCoding - Web Design & Development Agency",
|
|
||||||
description: "Professional websites that turn visitors into clients. Custom design, WordPress development, e-commerce solutions.",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQoiK0cfH6yVn0KJDPULLa1Z6v/a-modern-premium-web-design-and-developm-1772534363140-b2bf1f7a.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
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={`${archivo.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1423,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -103,7 +103,7 @@ export default function HomePage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardTestimonial
|
<HeroBillboardTestimonial
|
||||||
title="Websites That Turn Visitors Into Clients"
|
title="Websites That Convert Visitors Into Paying Clients"
|
||||||
description="We design, build and maintain high-performance websites that grow your business. From WordPress sites to e-commerce stores, we create solutions that convert."
|
description="We design, build and maintain high-performance websites that grow your business. From WordPress sites to e-commerce stores, we create solutions that convert."
|
||||||
tag="Premium Web Solutions"
|
tag="Premium Web Solutions"
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user