5 Commits

Author SHA1 Message Date
7c26cc9622 Update src/app/page.tsx 2026-03-03 22:18:07 +00:00
48c9fa1935 Update src/app/layout.tsx 2026-03-03 22:18:06 +00:00
d3b8a9e118 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:14:14 +00:00
686220d351 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:12:53 +00:00
78e526372e Merge version_1 into main
Merge version_1 into main
2026-03-03 22:11:18 +00:00
2 changed files with 11 additions and 38 deletions

View File

@@ -1,51 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "KegDigital | Web Design Agency", description: "Stunning web design and development services that drive conversions. We build beautiful, high-performing websites for growing businesses.", keywords: "web design, web development, digital design, branding, e-commerce, SaaS design", openGraph: {
title: "KegDigital | Web Design Agency", description: "Transform your digital presence with strategic web design and development.", siteName: "KegDigital", type: "website"
},
twitter: {
card: "summary_large_image", title: "KegDigital | Web Design Agency", description: "Stunning web design and development services that drive conversions."
},
robots: {
index: true,
follow: true
}
};
title: "KegDigital - Web Design & Development", description: "We craft stunning, high-performing websites that turn visitors into clients."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -61,12 +61,11 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "One year of crafting" },
{ type: "text", content: "exceptional digital experiences" }
{ type: "text", content: "I'm a 20-year-old independent web designer from Texas who's passionate about creating digital experiences that truly matter. What started as a hobby building websites has turned into a full-fledged business, and I've recently made the exciting move to Edmond, Oklahoma to build a strong local presence and help businesses in the community thrive online." }
]}
useInvertedBackground={false}
buttons={[
{ text: "Learn Our Story", href: "#services" }
{ text: "Let's Work Together", href: "contact" }
]}
buttonAnimation="slide-up"
/>