10 Commits

Author SHA1 Message Date
dfdde747ed Update src/app/layout.tsx 2026-05-21 01:06:49 +00:00
9bff5d899b Update src/app/page.tsx 2026-05-21 01:01:34 +00:00
6897988880 Update theme fonts 2026-05-21 00:57:12 +00:00
eb4b92c9c5 Update theme fonts 2026-05-21 00:57:12 +00:00
12ceaf9d79 Update theme fonts 2026-05-21 00:56:55 +00:00
bce3692171 Update theme fonts 2026-05-21 00:56:54 +00:00
6e2dd26cb4 Update src/app/page.tsx 2026-05-21 00:54:21 +00:00
00ddf6b780 Merge version_2 into main
Merge version_2 into main
2026-05-21 00:49:24 +00:00
6afce3e554 Merge version_2 into main
Merge version_2 into main
2026-05-21 00:36:26 +00:00
6a03bac9d8 Merge version_2 into main
Merge version_2 into main
2026-05-21 00:35:58 +00:00
3 changed files with 23 additions and 12 deletions

View File

@@ -6,12 +6,14 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Augurad Media | Luxury Content & Production',
description: 'Premier content creation and media production. Expert photography, social media strategy, and event management.',
title: "Augurad Media | Content & Production",
description: "Premier content creation and media production. Expert photography, social media strategy, and event management.",
openGraph: {
"title": "Augurad Media",
"description": "Defining luxury in media production.",
@@ -22,7 +24,16 @@ export const metadata: Metadata = {
},
};
const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], });
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -32,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
{children}
<script

View File

@@ -46,10 +46,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "sparkles-gradient" }}
title="Augurad Media: Redefining Modern Content"
title="Augurad Media Redefining Modern Content"
description="High-impact creative production for brands that refuse to blend in. We turn visions into high-fidelity reality."
avatars={[
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E0k3DUSx6jycohvNHuDEDzfPVY/uploaded-1779323392402-kdijrktl.png", alt: "Augurad Studio" },
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E0k3DUSx6jycohvNHuDEDzfPVY/uploaded-1779324848692-f1k003fq.jpg", alt: "Augurad Studio" },
]}
buttons={[{ text: "Book Production", href: "#contact" }]}
marqueeItems={[
@@ -122,8 +122,8 @@ export default function LandingPage() {
description="Measurable results for premium clients."
metrics={[
{ id: "m1", icon: Users, title: "Audience Reach", value: "1.5M+" },
{ id: "m2", icon: Zap, title: "Content Pieces", value: "500+" },
{ id: "m3", icon: Award, title: "Events Managed", value: "75+" },
{ id: "m2", icon: Zap, title: "Content Pieces", value: "50+" },
{ id: "m3", icon: Award, title: "Events Managed", value: "49+" },
]}
/>
</div>
@@ -148,7 +148,7 @@ export default function LandingPage() {
<div id="socialProof" data-section="socialProof">
<SocialProofOne
names={["Brand A", "Brand B", "Brand C", "Brand D"]}
names={["Brand A", "Brand B", "The Masculine Strategy.", "AMOBIC HOMES"]}
title="Collaborators"
description="Partnering with brands that define their industries."
textboxLayout="default"
@@ -182,4 +182,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-inter), sans-serif;
}