Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 99ef428fee | |||
| e7fed90ddf | |||
| 4d25491228 | |||
| 12ac3383b9 | |||
| 1b1a53bd06 | |||
| e169ddffb5 | |||
| e1cce6c9a2 | |||
| 2f2546827e | |||
| 3e76d3e601 | |||
| 161286ba3f | |||
| e42e56d627 | |||
| c6bf600f72 | |||
| d2b38bb37f | |||
| b98f3ad535 |
@@ -7,6 +7,8 @@ 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 { Public_Sans } from "next/font/google";
|
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"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -34,7 +38,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${publicSans.variable} antialiased`}>
|
<body className={`${raleway.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
|||||||
logoText="Code That Moves"
|
logoText="Code That Moves"
|
||||||
description="Fullstack developer crafting innovative digital solutions with modern technologies. Explore my work and let's build something extraordinary together."
|
description="Fullstack developer crafting innovative digital solutions with modern technologies. Explore my work and let's build something extraordinary together."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View My Projects", href: "#projects" }
|
{ text: "Discuss Your Project", href: "#projects" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "animated-grid" }}
|
background={{ variant: "animated-grid" }}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -85,9 +85,9 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
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: "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: "View Demo", imageSrc: "http://img.b2bpic.net/free-photo/table-full-tailoring-instruments_482257-96375.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: "View Demo", imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241197.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"
|
title="Featured Work"
|
||||||
description="A showcase of recent software development projects."
|
description="A showcase of recent software development projects."
|
||||||
|
|||||||
@@ -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-public-sans), sans-serif;
|
font-family: var(--font-raleway), 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-public-sans), sans-serif;
|
font-family: var(--font-raleway), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #000000;
|
--background: #fffefe;
|
||||||
--card: #0c0c0c;
|
--card: #f6f7f4;
|
||||||
--foreground: #ffffff;
|
--foreground: #080908;
|
||||||
--primary-cta: #106EFB;
|
--primary-cta: #0e3a29;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #fffefe;
|
||||||
--secondary-cta: #000000;
|
--secondary-cta: #e7eecd;
|
||||||
--secondary-cta-text: #ffffff;
|
--secondary-cta-text: #080908;
|
||||||
--accent: #535353;
|
--accent: #35c18b;
|
||||||
--background-accent: #106EFB;
|
--background-accent: #ecebe4;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user