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 type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = { 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 & Development", description: "We craft stunning, high-performing websites that turn visitors into clients."};
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
}
};
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.variable}>
<body {children}
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1413,7 +1388,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -61,12 +61,11 @@ export default function LandingPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
heading={[ heading={[
{ type: "text", content: "One year of crafting" }, { 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." }
{ type: "text", content: "exceptional digital experiences" }
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Learn Our Story", href: "#services" } { text: "Let's Work Together", href: "contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />