Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 03fcb8a1cf | |||
| 88c5b09251 | |||
| f0f4a908c6 | |||
| 6b3f11f513 | |||
| d0d84457d1 |
@@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||||
import { CheckCircle, Clock, Leaf, Shield, ShieldCheck, Smartphone, Sparkles, Star, User, UserCheck } from "lucide-react";
|
import { CheckCircle, Clock, Leaf, Mail, MapPin, Phone, Shield, ShieldCheck, Smartphone, Sparkles, Star, User, UserCheck } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -74,7 +74,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
text: "Bestill renhold", href: "#contact"},
|
text: "Bestill renhold", href: "#contact"},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349265.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349265.jpg?_wi=1"
|
||||||
imageAlt="Stilig og ren stue interiør"
|
imageAlt="Stilig og ren stue interiør"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
@@ -206,30 +206,31 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
title="Kontakt oss"
|
||||||
background={{
|
description="La oss hjelpe deg med et renere hjem i dag."
|
||||||
variant: "plain"}}
|
inputs={[
|
||||||
tag="Kontakt oss"
|
{ name: "name", type: "text", placeholder: "Navn", required: true },
|
||||||
title="Klar for et renere hjem?"
|
{ name: "email", type: "email", placeholder: "E-post", required: true }
|
||||||
description="Vi svarer raskt på alle henvendelser."
|
]}
|
||||||
buttons={[
|
textarea={{ name: "message", placeholder: "Beskriv ditt behov", rows: 4, required: true }}
|
||||||
{
|
useInvertedBackground={false}
|
||||||
text: "Send forespørsel"},
|
imageSrc="http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349265.jpg?_wi=2"
|
||||||
]}
|
/>
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterCard
|
||||||
logoText="Freska Norge"
|
logoText="Freska Norge"
|
||||||
leftLink={{
|
copyrightText="© 2025 | Freska Norge. Alle rettigheter reservert."
|
||||||
text: "Personvern", href: "#"}}
|
socialLinks={[
|
||||||
rightLink={{
|
{ icon: Mail, href: "#", ariaLabel: "E-post" },
|
||||||
text: "Vilkår", href: "#"}}
|
{ icon: Phone, href: "#", ariaLabel: "Telefon" },
|
||||||
|
{ icon: MapPin, href: "#", ariaLabel: "Adresse" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user