diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9e85e88..6bd115f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,20 @@
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 "./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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Oron Studio | Award-Winning Creative Agency", description: "High-end creative agency specializing in premium branding, immersive digital experiences, and sophisticated motion design for global enterprises.", keywords: "creative agency, branding, web design, motion design, GSAP animation, digital experience, brand strategy, award-winning design", metadataBase: new URL("https://oronstudio.com"),
- alternates: {
- canonical: "https://oronstudio.com"},
- openGraph: {
- title: "Oron Studio | Design That Moves Culture Forward", description: "Premium creative agency crafting bold brands and immersive digital experiences.", url: "https://oronstudio.com", siteName: "Oron Studio", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbEkZmziBT3SSVmxNpLEKgE8yR/a-sleek-premium-creative-agency-dashboar-1772853153806-45156c7e.png", alt: "Oron Studio Creative Dashboard"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Oron Studio | Design That Moves Culture Forward", description: "Premium creative agency crafting bold brands and immersive digital experiences.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbEkZmziBT3SSVmxNpLEKgE8yR/a-sleek-premium-creative-agency-dashboar-1772853153806-45156c7e.png"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Oron Studio - Award-Winning Creative Agency", description: "Oron Studio crafts bold brands and immersive digital experiences with cutting-edge animation and strategic thinking."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 490e766..8b794f2 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -171,7 +171,7 @@ export default function LandingPage() {