Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c2adc1658b | |||
| 67dd2e4057 | |||
| 0ebc8b6624 | |||
| 98bdbc6af0 | |||
| 36f5d979b9 | |||
| 3b4f00eace |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -22,10 +23,10 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -36,7 +37,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function LandingPage() {
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
title="Code That Builds Your Future"
|
||||
title="Build High-Converting Apps in Weeks"
|
||||
description="Premium web and app development for ambitious businesses. We transform your vision into high-converting digital products that drive real growth and lasting impact."
|
||||
tag="ELITE DEVELOPMENT STUDIO"
|
||||
buttons={[
|
||||
@@ -185,7 +185,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "2", title: "Do you maintain apps?", content: "Yes, we offer ongoing maintenance packages."},
|
||||
{
|
||||
id: "3", title: "Can we talk on WhatsApp?", content: "Yes, we prioritize WhatsApp for client communication."},
|
||||
id: "3", title: "Can we talk on WhatsApp?", content: "Yes, we prioritize WhatsApp for client communication. Click the WhatsApp button in the navigation to start a conversation now."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-abstract-background-with-flowing-digital-particles_1048-16335.jpg"
|
||||
title="Common Questions"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user