Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 833ec32927 | |||
| dfd4e7d0e3 | |||
| 9d730804fd |
@@ -1,28 +1,60 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Lato } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const geist = Geist({
|
const lato = Lato({
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
variable: "--font-lato",
|
||||||
});
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "300", "400", "700", "900"],
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Prof Digital - Web Design & Development Agency", description: "Transform your digital presence with Prof Digital. We create stunning websites and digital solutions that drive results."};
|
title: "Prof Digital - Web Design & Development Agency",
|
||||||
|
description: "Transform your digital presence with Prof Digital. Expert web design, development, and digital solutions for ambitious businesses. 150+ successful projects delivered.",
|
||||||
|
keywords: "web design, web development, digital agency, UX design, custom software, mobile apps, digital strategy, brand design",
|
||||||
|
metadataBase: new URL("https://profdigital.com"),
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://profdigital.com",
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Prof Digital - Digital Excellence Starts Here",
|
||||||
|
description: "Create stunning digital experiences that drive real business results. Expert web design, development & strategy.",
|
||||||
|
url: "https://profdigital.com",
|
||||||
|
siteName: "Prof Digital",
|
||||||
|
type: "website",
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATJutgal4U6WrxmE0GeTKs4ovq/modern-minimalist-web-design-interface-w-1772612066081-7672bf7b.png",
|
||||||
|
alt: "Prof Digital - Web Design & Development",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Prof Digital - Web Design & Development",
|
||||||
|
description: "Transform your digital presence with expert web design and development services.",
|
||||||
|
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATJutgal4U6WrxmE0GeTKs4ovq/modern-minimalist-web-design-interface-w-1772612066081-7672bf7b.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">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<ServiceWrapper>
|
||||||
{children}
|
<body className={`${lato.variable} antialiased`}>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1390,6 +1422,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -267,7 +267,7 @@ export default function HomePage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Get a free strategy session worth $500. Book your consultation today."
|
text="Ready to transform your digital presence? Let's create something extraordinary together. Reach out today for a free consultation."
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -315,4 +315,4 @@ export default function HomePage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
Reference in New Issue
Block a user