17 Commits

Author SHA1 Message Date
1d3328007e Merge version_8 into main
Merge version_8 into main
2026-05-09 16:23:19 +00:00
99ef428fee Update theme fonts 2026-05-09 16:23:16 +00:00
e7fed90ddf Update theme fonts 2026-05-09 16:23:16 +00:00
e89a2b2af2 Merge version_8 into main
Merge version_8 into main
2026-05-09 16:22:59 +00:00
4d25491228 Update theme fonts 2026-05-09 16:22:56 +00:00
12ac3383b9 Update theme fonts 2026-05-09 16:22:55 +00:00
aa06dc6080 Merge version_8 into main
Merge version_8 into main
2026-05-09 16:22:44 +00:00
1b1a53bd06 Update theme colors 2026-05-09 16:22:41 +00:00
bb3d0db926 Merge version_7 into main
Merge version_7 into main
2026-05-09 16:22:36 +00:00
e169ddffb5 Update theme colors 2026-05-09 16:22:29 +00:00
d2102bffb2 Merge version_6 into main
Merge version_6 into main
2026-05-09 16:22:21 +00:00
e1cce6c9a2 Update theme colors 2026-05-09 16:22:18 +00:00
c092e019c3 Merge version_5 into main
Merge version_5 into main
2026-05-09 16:22:09 +00:00
2f2546827e Update theme colors 2026-05-09 16:22:06 +00:00
e1588428fc Merge version_4 into main
Merge version_4 into main
2026-05-09 16:19:32 +00:00
3e76d3e601 Update src/app/page.tsx 2026-05-09 16:19:29 +00:00
161286ba3f Merge version_3 into main
Merge version_3 into main
2026-05-09 16:18:00 +00:00
4 changed files with 21 additions and 17 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -21,8 +23,10 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
@@ -34,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -85,9 +85,9 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
products={[
{ id: "p1", name: "SaaS Platform", price: "View Demo", imageSrc: "http://img.b2bpic.net/free-photo/business-analytics-financial-technology-concept-generative-ai_8829-2894.jpg?_wi=2" },
{ id: "p2", name: "E-commerce Shop", price: "View Demo", imageSrc: "http://img.b2bpic.net/free-photo/table-full-tailoring-instruments_482257-96375.jpg?_wi=2" },
{ id: "p3", name: "Data Analytics", price: "View Demo", imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241197.jpg?_wi=2" }
{ id: "p1", name: "SaaS Platform", price: "Explore Case Study", imageSrc: "http://img.b2bpic.net/free-photo/business-analytics-financial-technology-concept-generative-ai_8829-2894.jpg?_wi=2" },
{ id: "p2", name: "E-commerce Shop", price: "Explore Case Study", imageSrc: "http://img.b2bpic.net/free-photo/table-full-tailoring-instruments_482257-96375.jpg?_wi=2" },
{ id: "p3", name: "Data Analytics", price: "Explore Case Study", imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241197.jpg?_wi=2" }
]}
title="Featured Work"
description="A showcase of recent software development projects."

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #106EFB;
--primary-cta-text: #ffffff;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #535353;
--background-accent: #106EFB;
--background: #fffefe;
--card: #f6f7f4;
--foreground: #080908;
--primary-cta: #0e3a29;
--primary-cta-text: #fffefe;
--secondary-cta: #e7eecd;
--secondary-cta-text: #080908;
--accent: #35c18b;
--background-accent: #ecebe4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);