Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-01-07 04:37:52 +00:00
3 changed files with 9 additions and 9 deletions

View File

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

View File

@@ -1,12 +1,11 @@
import type { Metadata } from "next";
import { Prata } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const prata = Prata({
variable: "--font-prata", subsets: ["latin"],
weight: ["400"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -15,7 +14,8 @@ export const metadata: Metadata = {
follow: true,
},
openGraph: {
title: "Hey Eddy | AI Voice Interviews for Smarter Hiring", description: "Automate candidate screening with AI-powered voice interviews. Eliminate bias, reduce hiring time by 73%, and find your best candidates faster.", type: "website", siteName: "Hey Eddy"},
title: "Hey Eddy | AI Voice Interviews for Smarter Hiring", description: "Automate candidate screening with AI-powered voice interviews. Eliminate bias, reduce hiring time by 73%, and find your best candidates faster.", type: "website", siteName: "Hey Eddy"
},
};
export default function RootLayout({
@@ -27,7 +27,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={prata.variable}
className={inter.variable}
>
<Tag />
{children}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';