2 Commits

Author SHA1 Message Date
c9c84a0191 Update src/app/page.tsx 2026-03-05 18:49:03 +00:00
32ac74e4f9 Update src/app/layout.tsx 2026-03-05 18:49:02 +00:00
2 changed files with 13 additions and 33 deletions

View File

@@ -7,49 +7,31 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const halant = Halant({ const halant = Halant({
variable: "--font-halant", variable: "--font-halant", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter", subsets: ["latin"],
subsets: ["latin"],
}); });
const openSans = Open_Sans({ const openSans = Open_Sans({
variable: "--font-open-sans", variable: "--font-open-sans", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Proof Digital - Results-Driven Digital Agency", title: "Proof Digital - Results-Driven Digital Agency", description: "Transform your brand with Proof Digital. We deliver results-driven digital solutions including brand strategy, web design, development, and marketing.", keywords: "digital agency, brand strategy, web design, development, digital marketing, results-driven", metadataBase: new URL("https://proofdigital.com"),
description: "Transform your brand with Proof Digital. We deliver results-driven digital solutions including brand strategy, web design, development, and marketing.",
keywords: "digital agency, brand strategy, web design, development, digital marketing, results-driven",
metadataBase: new URL("https://proofdigital.com"),
alternates: { alternates: {
canonical: "https://proofdigital.com", canonical: "https://proofdigital.com"},
},
openGraph: { openGraph: {
title: "Proof Digital - Digital Solutions That Deliver Results", title: "Proof Digital - Digital Solutions That Deliver Results", description: "Partner with Proof Digital for comprehensive digital solutions that drive growth and measurable impact.", url: "https://proofdigital.com", siteName: "Proof Digital", type: "website", images: [
description: "Partner with Proof Digital for comprehensive digital solutions that drive growth and measurable impact.",
url: "https://proofdigital.com",
siteName: "Proof Digital",
type: "website",
images: [
{ {
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXC5yOR7Ejs8BWLx6NIQSABgzB/a-modern-digital-agency-dashboard-interf-1772736377986-bf0b1e25.png", url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXC5yOR7Ejs8BWLx6NIQSABgzB/a-modern-digital-agency-dashboard-interf-1772736377986-bf0b1e25.png", alt: "Proof Digital - Digital Agency"},
alt: "Proof Digital - Digital Agency",
},
], ],
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "Proof Digital - Results-Driven Digital Agency", description: "We deliver digital solutions that transform brands and drive measurable results.", images: [
title: "Proof Digital - Results-Driven Digital Agency", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXC5yOR7Ejs8BWLx6NIQSABgzB/a-modern-digital-agency-dashboard-interf-1772736377986-bf0b1e25.png"],
description: "We deliver digital solutions that transform brands and drive measurable results.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXC5yOR7Ejs8BWLx6NIQSABgzB/a-modern-digital-agency-dashboard-interf-1772736377986-bf0b1e25.png",
],
}, },
robots: { robots: {
index: true, index: true,
@@ -1441,4 +1423,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -21,9 +21,7 @@ export default function HomePage() {
]; ];
const navButton = { const navButton = {
text: "Get Started", text: "Get Started", href: "/contact"};
href: "/contact",
};
const socialLinks = [ const socialLinks = [
{ icon: Linkedin, href: "https://linkedin.com/company/proof-digital", ariaLabel: "LinkedIn" }, { icon: Linkedin, href: "https://linkedin.com/company/proof-digital", ariaLabel: "LinkedIn" },
@@ -57,7 +55,7 @@ export default function HomePage() {
<HeroBillboard <HeroBillboard
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
title="Digital Solutions That Deliver Real Results" title="Digital Solutions That Deliver Real Results"
description="We partner with forward-thinking brands to create compelling digital experiences that drive growth, engagement, and measurable impact." description="$500M+ in client revenue generated. We partner with forward-thinking brands to create compelling digital experiences that drive growth, engagement, and measurable impact."
tag="Digital Excellence" tag="Digital Excellence"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -145,4 +143,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }