diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7cf9658..1ee811f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,13 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
-import "./styles/variables.css";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "אתר פלוס - בניית אתרים לעסקים", description: "אנחנו בונים אתרים מודרניים לעסקים שרוצים להיראות מקצועיים באינטרנט ולהביא יותר לקוחות"
-};
+ title: "אתר פלוס - בניית אתרים לעסקים", description: "בניית אתרים מקצועיים לעסקים קטנים וגדולים בישראל"};
export default function RootLayout({
children,
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b73b657..12c7811 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -6,9 +6,10 @@ import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import TextAbout from "@/components/sections/about/TextAbout";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
-import ContactText from "@/components/sections/contact/ContactText";
-import FooterCard from "@/components/sections/footer/FooterCard";
-import { Zap, Target, Briefcase, Star, Smartphone, Headphones, TrendingUp, Facebook, Instagram, Linkedin, Mail } from "lucide-react";
+import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Zap, Target, Briefcase, Star, Image, Mail, Smartphone, Headphones, TrendingUp, Facebook, Instagram, Linkedin } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "שירותים", id: "services" },
{ name: "אודות", id: "about" },
- { name: "למה אנחנו", id: "why-us" },
+ { name: "יתרונות", id: "why-us" },
]}
button={{ text: "קבלו הצעת מחיר", href: "#contact" }}
animateOnLoad={true}
@@ -64,7 +65,7 @@ export default function LandingPage() {