7 Commits

Author SHA1 Message Date
cb99b17469 Update src/app/page.tsx 2026-06-05 12:50:37 +00:00
6bbc920dd8 Merge version_3 into main
Merge version_3 into main
2026-06-05 12:46:11 +00:00
36b86ca3ea Update src/app/styles/base.css 2026-06-05 12:46:08 +00:00
a264ae21da Update src/app/page.tsx 2026-06-05 12:46:08 +00:00
adfca91b82 Update src/app/layout.tsx 2026-06-05 12:46:07 +00:00
7bf7fede57 Merge version_2 into main
Merge version_2 into main
2026-06-05 12:43:27 +00:00
265eb340b5 Merge version_2 into main
Merge version_2 into main
2026-06-05 12:42:59 +00:00
3 changed files with 19 additions and 12 deletions

View File

@@ -41,9 +41,9 @@ export const metadata: Metadata = {
}, },
}; };
const nunito = Nunito({
variable: "--font-nunito", const inter = Inter({
subsets: ["latin"] variable: "--font-inter", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -54,7 +54,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${nunito.variable} antialiased`}> <body className={`${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -21,7 +21,7 @@ export default function LandingPage() {
contentWidth="smallMedium" contentWidth="smallMedium"
sizing="mediumLarge" sizing="mediumLarge"
background="none" background="none"
cardStyle="soft-shadow" cardStyle="solid"
primaryButtonStyle="flat" primaryButtonStyle="flat"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="medium" headingFontWeight="medium"
@@ -44,6 +44,8 @@ export default function LandingPage() {
button={{ button={{
text: "Get My Visibility Score", href: "#lead-capture"}} text: "Get My Visibility Score", href: "#lead-capture"}}
brandName="Asovix" brandName="Asovix"
logoSrc="http://img.b2bpic.net/free-photo/asovix-logo_123-001.jpg"
logoAlt="Asovix Logo"
/> />
</div> </div>
@@ -57,19 +59,24 @@ export default function LandingPage() {
testimonials={[ 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, 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, 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, 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, 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, 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={[ buttons={[
{ {

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-nunito), 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;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-nunito), sans-serif; font-family: var(--font-inter), sans-serif;
} }