Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a7580e378 | |||
| dfdde747ed | |||
| 6d2e9293ff | |||
| 9bff5d899b | |||
| 769a50ec75 | |||
| 6897988880 | |||
| eb4b92c9c5 | |||
| d45f9c30aa | |||
| 12ceaf9d79 | |||
| bce3692171 | |||
| 64f33ebab5 | |||
| 6e2dd26cb4 | |||
| 00ddf6b780 | |||
| 6afce3e554 | |||
| 6a03bac9d8 |
@@ -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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user