Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b4c2e51437 | |||
| 40802c093c | |||
| f118e39bad | |||
| 948c0a611b | |||
| 9d4c9e39b9 | |||
| fc44ebe830 | |||
| 8c949093f6 | |||
| 8ed2f39743 | |||
| 6019e2539d | |||
| 9f5d70dc14 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Playfair_Display } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -19,7 +20,11 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"] });
|
||||
|
||||
const playfairDisplay = Playfair_Display({
|
||||
variable: "--font-playfair-display", subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -29,7 +34,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body className={`${playfairDisplay.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -39,7 +39,7 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="ARCVIZ"
|
||||
brandName="Archiv Studios"
|
||||
button={{ text: "Start Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
@@ -48,7 +48,7 @@ export default function LandingPage() {
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
logoText="ARCVIZ STUDIOS"
|
||||
logoText="Archiv Studios"
|
||||
description="A creative studio delivering exceptional design, architectural solutions, and digital experiences."
|
||||
buttons={[
|
||||
{
|
||||
@@ -167,6 +167,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
buttonText="Request Consultation"
|
||||
useInvertedBackground={false}
|
||||
title="Let's Build Iconic"
|
||||
description="Got a project in mind? Reach out today."
|
||||
@@ -189,7 +190,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-geometric-abstract-background_1048-17507.jpg?_wi=3"
|
||||
logoText="ARCVIZ"
|
||||
logoText="Archiv Studios"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
@@ -208,10 +209,10 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 ArcViz Studios | Your vision. Our obsession."
|
||||
copyrightText="© 2025 Archiv Studios | Your vision. Our obsession."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-playfair-display), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-playfair-display), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user