Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b913cc7b3c | |||
| cb99b17469 | |||
| 6bbc920dd8 | |||
| 36b86ca3ea | |||
| a264ae21da | |||
| adfca91b82 | |||
| 7bf7fede57 | |||
| 265eb340b5 |
@@ -41,9 +41,9 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"]
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +54,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -21,7 +21,7 @@ export default function LandingPage() {
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="soft-shadow"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
@@ -44,6 +44,8 @@ export default function LandingPage() {
|
||||
button={{
|
||||
text: "Get My Visibility Score", href: "#lead-capture"}}
|
||||
brandName="Asovix"
|
||||
logoSrc="http://img.b2bpic.net/free-photo/asovix-logo_123-001.jpg"
|
||||
logoAlt="Asovix Logo"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -57,19 +59,24 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Alex Johnson", handle: "@alexj", testimonial: "Asovix truly opened my eyes to how my profile was being seen. I landed my dream role within weeks!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-viewer-changing-channels-television-set-with-remote-control_482257-92306.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/screenshot-career-dashboard_123-1.jpg", imageAlt: "Screenshot of Asovix career dashboard"
|
||||
},
|
||||
{
|
||||
name: "Maria Rodriguez", handle: "@mariar", testimonial: "The insights from Asovix were game-changing. It helped me re-position myself effectively in a competitive market.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/screenshot-linkedin-analytics_123-2.jpg", imageAlt: "Screenshot of LinkedIn analytics"
|
||||
},
|
||||
{
|
||||
name: "David Chen", handle: "@davidc", testimonial: "I always wondered why I wasn't getting interviews. Asovix gave me the answers and the tools to fix it.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-serious-plump-male-eyeglasses-grey-background_613910-13875.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/screenshot-cv-optimization-tool_123-3.jpg", imageAlt: "Screenshot of CV optimization tool"
|
||||
},
|
||||
{
|
||||
name: "Sophie Kim", handle: "@sophiek", testimonial: "Invaluable for navigating AI screening. Asovix helped me tailor my application and stand out.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-crossed-arms-darkness_1098-3707.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/screenshot-interview-prep-platform_123-4.jpg", imageAlt: "Screenshot of interview preparation platform"
|
||||
},
|
||||
{
|
||||
name: "Marcus Brown", handle: "@marcusb", testimonial: "From invisible to in-demand! Asovix is the secret weapon every job seeker needs.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-smiling_23-2148452708.jpg"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/screenshot-job-matching-interface_123-5.jpg", imageAlt: "Screenshot of job matching interface"
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user