Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ae393e08e | |||
| bcd051e9e9 | |||
| 6dfa0a3f0c | |||
| fcf04ec090 |
@@ -501,7 +501,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -514,5 +514,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Prata } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const prata = Prata({
|
const inter = Inter({
|
||||||
variable: "--font-prata", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
weight: ["400"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -15,7 +14,8 @@ export const metadata: Metadata = {
|
|||||||
follow: true,
|
follow: true,
|
||||||
},
|
},
|
||||||
openGraph: {
|
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({
|
export default function RootLayout({
|
||||||
@@ -27,7 +27,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={prata.variable}
|
className={inter.variable}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
@@ -40,7 +40,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitAvatars
|
<HeroSplitAvatars
|
||||||
title="AI Voice Interviews That Hire Better"
|
title="AI Voice Interviewer"
|
||||||
description="Conduct unbiased, efficient candidate interviews with AI-powered voice technology. Streamline hiring from screening to insights in minutes."
|
description="Conduct unbiased, efficient candidate interviews with AI-powered voice technology. Streamline hiring from screening to insights in minutes."
|
||||||
tag="AI Recruiting"
|
tag="AI Recruiting"
|
||||||
avatars={[
|
avatars={[
|
||||||
@@ -52,7 +52,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
avatarText="Join 500+ companies automating interviews"
|
avatarText="Join 500+ companies automating interviews"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767760230068-ip30zf59.jpg"
|
imageSrc="https://img.b2bpic.net/premium-photo/low-angle-view-modern-buildings-against-sky_1048944-5252028.jpg?id=100949967"
|
||||||
imageAlt="Hey Eddy AI voice interview platform"
|
imageAlt="Hey Eddy AI voice interview platform"
|
||||||
buttons={[
|
buttons={[
|
||||||
{"text":"Start Free Trial","href":"https://heyeddy.com/signup"},
|
{"text":"Start Free Trial","href":"https://heyeddy.com/signup"},
|
||||||
|
|||||||
Reference in New Issue
Block a user