Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-03-09 10:41:19 +00:00
2 changed files with 14 additions and 12 deletions

View File

@@ -5,7 +5,8 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Fibro Poland - Logistyka Przemysłowa", description: "Profesjonalna obsługa logistyczna dla firm i przewoźników w Oławie"};
title: "Fibro Poland - Logistyka Przemysłowa", description: "Profesjonalna obsługa logistyczna dla firm i przewoźników w Oławie"
};
export default function RootLayout({
children,
@@ -1384,4 +1385,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -9,27 +9,28 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Truck, Star, CheckCircle, Package, Boxes, Loader, Handshake, Zap, Award, MapPin, Phone, Quote } from "lucide-react";
import Link from "next/link";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "O nas", id: "/about" },
{ name: "Usługi", id: "services" },
{ name: "Kontakt", id: "contact-cta" },
{ name: "+48 71 XXX XX XX", id: "tel" },
{ name: "O nas", id: "#trust" },
{ name: "Usługi", id: "#services" },
{ name: "Dlaczego my", id: "#why-us" },
{ name: "Opinie", id: "#testimonials" },
{ name: "Kontakt", id: "#contact-cta" },
];
const footerColumns = [
{
title: "Firma", items: [
{ label: "O nas", href: "/about" },
{ label: "Usługi", href: "/" },
{ label: "Kontakt", href: "/" },
{ label: "O nas", href: "#trust" },
{ label: "Usługi", href: "#services" },
{ label: "Dlaczego my", href: "#why-us" },
{ label: "Opinie", href: "#testimonials" },
],
},
{
title: "Informacje", items: [
title: "Kontakt", items: [
{ label: "Włoska 1, 55-200 Oława", href: "#" },
{ label: "+48 71 XXX XX XX", href: "tel:+48717XXXXX" },
{ label: "info@fibropoland.pl", href: "mailto:info@fibropoland.pl" },
@@ -214,4 +215,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}