Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa321d800f | |||
| 551603bdc5 | |||
| 65253766db | |||
| e53a398525 | |||
| df926fcf90 | |||
| c47670cbc0 | |||
| 4620c63aee | |||
| ace086d57a | |||
| 8247acf832 | |||
| 5ecde5eb78 | |||
| 649d035f86 | |||
| 951da5d532 | |||
| b300af3c41 | |||
| 930221de18 | |||
| f6ca5cd5e2 | |||
| be388e43b1 | |||
| a6dc14a3c1 | |||
| 1c1f4c4bf6 | |||
| b8d9ea3e9e | |||
| bc2a6c19eb | |||
| 84bf98a5a9 | |||
| 0e936801f5 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,8 +42,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -54,7 +60,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -70,7 +70,7 @@ export default function LandingPage() {
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ceo-management-team-gathering-boardroom-project-briefing_482257-122918.jpg", imageAlt: "Hands interacting with a transparent tablet"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-working-together-medium-shot_52683-99762.jpg", imageAlt: "People collaborating on a virtual whiteboard"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-working-together-medium-shot_52683-99762.jpg?_wi=1", imageAlt: "People collaborating on a virtual whiteboard"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/website-hosting-concept-with-hands-holding-tablet_23-2149406779.jpg", imageAlt: "Platform interface for C2C transactions"},
|
||||
{
|
||||
@@ -169,6 +169,7 @@ export default function LandingPage() {
|
||||
"CreativeHub", "Innovate Solutions", "GlobalWorks", "SkillForge", "Connect Talent", "Project Nexus", "FutureCraft"]}
|
||||
title="Trusted by a Growing Community"
|
||||
description="Join thousands of successful professionals and clients who are transforming the way work gets done on WorkConnect."
|
||||
tag="Industry Leaders Trust Us"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -219,8 +220,8 @@ export default function LandingPage() {
|
||||
tag="Get in Touch"
|
||||
title="Ready to Connect? Let's Talk!"
|
||||
description="Have questions, feedback, or need support? Our team is here to help you navigate WorkConnect and make your experience seamless."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/engineer-writes-ai-code-laptop_482257-96435.jpg"
|
||||
imageAlt="Abstract network of interconnected nodes"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-medium-shot_52683-99762.jpg?_wi=2"
|
||||
imageAlt="People collaborating on a virtual whiteboard"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Email Address"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-font-family: var(--font-nunito), sans-serif;), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-font-family: var(--font-nunito), sans-serif;), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #eff2f6;
|
||||
--card: #ffffff;
|
||||
--foreground: #2a2a2a;
|
||||
--primary-cta: #9B59B6;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #e0e0e0;
|
||||
--background: #384659;
|
||||
--card: #f62727;
|
||||
--foreground: #29dfee;
|
||||
--primary-cta: #b83fe7;
|
||||
--primary-cta-text: #000000;
|
||||
--secondary-cta: #20230e;
|
||||
--secondary-cta-text: #2a2a2a;
|
||||
--accent: #d8bfd8;
|
||||
--background-accent: #d1d8e0;
|
||||
|
||||
Reference in New Issue
Block a user