3 Commits

Author SHA1 Message Date
3ea426f38c Update src/app/page.tsx 2026-03-08 07:39:31 +00:00
c46e06f08b Update src/app/layout.tsx 2026-03-08 07:39:30 +00:00
fade55b646 Merge version_1 into main
Merge version_1 into main
2026-03-08 07:35:39 +00:00
2 changed files with 13 additions and 40 deletions

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Geist, Geist_Mono } 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"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "PrimeSite Studio | Design & Digital Solutions", description: "Transform your brand with innovative design solutions. Strategic, creative, results-driven digital design agency.", keywords: "design agency, digital design, branding, web design, creative studio, UI/UX design", robots: {
index: true,
follow: true,
},
openGraph: {
title: "PrimeSite Studio | Design & Digital Solutions", description: "Transform your brand with innovative design solutions.", type: "website", siteName: "PrimeSite Studio", images: [
{
url: "http://img.b2bpic.net/free-photo/indoor-portrait-young-web-developers-international-company-having-coffee-break_197531-4959.jpg", alt: "PrimeSite Studio Design Excellence"},
],
},
twitter: {
card: "summary_large_image", title: "PrimeSite Studio | Design & Digital Solutions", description: "Transform your brand with innovative design solutions.", images: ["http://img.b2bpic.net/free-photo/indoor-portrait-young-web-developers-international-company-having-coffee-break_197531-4959.jpg"],
},
};
title: "PrimeSite Studio - Digital Design Excellence", description: "Transform your ideas into stunning digital experiences with innovative design solutions."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -61,7 +61,7 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-vector/postmodern-business-cover-collection_23-2148884225.jpg", imageAlt: "Digital illustration" },
]}
buttons={[
{ text: "View Our Work", href: "features" },
{ text: "Explore Our Portfolio", href: "features" },
{ text: "Start Your Project", href: "contact" },
]}
buttonAnimation="slide-up"