Add src/app/company-details/page.tsx
This commit is contained in:
61
src/app/company-details/page.tsx
Normal file
61
src/app/company-details/page.tsx
Normal file
@@ -0,0 +1,61 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||
|
||||
export default function CompanyDetailsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="fluid"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "#home" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Featured Jobs", id: "#jobs" },
|
||||
{ name: "Company Details", id: "/company-details" },
|
||||
{ name: "Company Reviews", id: "/company-reviews" },
|
||||
{ name: "Company Jobs", id: "/company-jobs" },
|
||||
{ name: "Company Analytics", id: "/company-analytics" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
]}
|
||||
brandName="JobGeorgia"
|
||||
button={{ text: "Get Started", href: "#pricing" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="company-details-hero" data-section="company-details-hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="Company Details"
|
||||
description="Explore in-depth information about this company, including its mission, vision, and team culture."
|
||||
buttons={[
|
||||
{ text: "View Jobs", href: "/company-jobs" },
|
||||
{ text: "Read Reviews", href: "/company-reviews" },
|
||||
]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/diverse-colleagues-discussing-work-office_1262-18150.jpg", imageAlt: "Company team working" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/business-people-office-working-together_23-2148906649.jpg", imageAlt: "Modern office interior" },
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user