12 Commits

Author SHA1 Message Date
144a71f161 Update theme fonts 2026-06-02 18:40:42 +00:00
25b0f026d4 Update theme fonts 2026-06-02 18:40:42 +00:00
dcc91077bf Update theme colors 2026-06-02 18:40:29 +00:00
f412c730fd Update theme colors 2026-06-02 18:40:11 +00:00
0a9df17fe2 Update theme colors 2026-06-02 18:40:05 +00:00
d64515e4ca Update theme colors 2026-06-02 18:39:49 +00:00
99c53e0afc Update theme colors 2026-06-02 18:39:36 +00:00
2ddd8e4c50 Update src/app/page.tsx 2026-06-02 18:26:52 +00:00
c285887f0c Update src/app/page.tsx 2026-06-02 17:33:21 +00:00
583e945b6a Merge version_1 into main
Merge version_1 into main
2026-06-02 17:32:37 +00:00
40c99162c8 Merge version_1 into main
Merge version_1 into main
2026-06-02 17:20:30 +00:00
da485f4d29 Merge version_1 into main
Merge version_1 into main
2026-06-02 17:19:36 +00:00
4 changed files with 25 additions and 17 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google"; import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -41,9 +42,14 @@ export const metadata: Metadata = {
}, },
}; };
const raleway = Raleway({
variable: "--font-raleway", const inter = Inter({
subsets: ["latin"] variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -54,7 +60,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${raleway.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -63,8 +63,10 @@ export default function LandingPage() {
text: "Request a Demo", href: "#contact"}, text: "Request a Demo", href: "#contact"},
{ {
text: "See How It Works", href: "#features"}, text: "See How It Works", href: "#features"},
{
text: "Get In Touch", href: "#contact"},
]} ]}
imageSrc="https://img.b2bpic.net/free-photo/axelborg-towers-modern-architecture_181624-37834.jpg?id=15036385" imageSrc="https://img.b2bpic.net/premium-photo/architecture-details-modern-building-metal-wall-curve-futuristic-space_1033579-188584.jpg?id=333886856"
imageAlt="MeliuSafe AI-powered structural health monitoring dashboard" imageAlt="MeliuSafe AI-powered structural health monitoring dashboard"
/> />
</div> </div>
@@ -274,4 +276,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #000000; --background: #f5faff;
--card: #0c0c0c; --card: #ffffff;
--foreground: #ffffff; --foreground: #001122;
--primary-cta: #106EFB; --primary-cta: #15479c;
--primary-cta-text: #ffffff; --primary-cta-text: #f5faff;
--secondary-cta: #000000; --secondary-cta: #ffffff;
--secondary-cta-text: #ffffff; --secondary-cta-text: #001122;
--accent: #535353; --accent: #a8cce8;
--background-accent: #106EFB; --background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);