Merge version_2 into main #3

Merged
bender merged 4 commits from version_2 into main 2026-03-04 04:07:00 +00:00
4 changed files with 28 additions and 41 deletions

View File

@@ -1,20 +1,9 @@
import type { Metadata } from "next";
import { Nunito } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
@@ -48,9 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}

View File

@@ -1,7 +1,7 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import TextAbout from "@/components/sections/about/TextAbout";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
@@ -15,27 +15,27 @@ import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="glass-elevated"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
<NavbarStyleApple
brandName="Synthify Media"
navItems={[
{ name: "Services", id: "features" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "contact" }}
/>
</div>

View File

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

View File

@@ -3,22 +3,22 @@
/* --vw is set by ThemeProvider */
/* --background: #ffffff;;;;
--card: #f9f9f9;;;;
--foreground: #000612e6;;;;
--primary-cta: #549bff;;;;
--secondary-cta: #f9f9f9;;;;
--accent: #e2e2e2;;;;
--background-accent: #c4c4c4;;;; */
--card: #ffffff;;;;
--foreground: #000000;;;;
--primary-cta: #000000;;;;
--secondary-cta: #f5f5f5;;;;
--accent: #cccccc;;;;
--background-accent: #f0f0f0;;;; */
--background: #ffffff;;;;
--card: #f9f9f9;;;;
--foreground: #000612e6;;;;
--primary-cta: #549bff;;;;
--card: #ffffff;;;;
--foreground: #000000;;;;
--primary-cta: #000000;;;;
--primary-cta-text: #ffffff;;;;
--secondary-cta: #f9f9f9;;;;
--secondary-cta: #f5f5f5;;;;
--secondary-cta-text: #000612e6;;;;
--accent: #e2e2e2;;;;
--background-accent: #c4c4c4;;;;
--accent: #cccccc;;;;
--background-accent: #f0f0f0;;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);