Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 19047c1576 | |||
| f13b3e5a76 | |||
| 8ae393e08e |
@@ -1,11 +1,12 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Prata } 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 inter = Inter({
|
const prata = Prata({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-prata", subsets: ["latin"],
|
||||||
|
weight: ["400"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -14,8 +15,7 @@ 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={inter.variable}
|
className={prata.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';
|
||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767760230068-ip30zf59.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767760230068-ip30zf59.jpg"
|
||||||
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":"Get Started Free","href":"https://heyeddy.com/signup"},
|
||||||
{"text":"Watch Demo","href":"#features"}
|
{"text":"Watch Demo","href":"#features"}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user