Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e70ac3cdfb | |||
| 41ad326eee | |||
| 569295f01d | |||
| 71b93e3e69 | |||
| 732f5b0486 | |||
| 604df28aa9 | |||
| d2f59ad192 | |||
| ee8b808d53 | |||
| 5ac302101d | |||
| 61e96bb3dd | |||
| 7b711ea06c | |||
| cfafc5d408 | |||
| 8b861304e3 |
@@ -35,7 +35,7 @@ export default function AboutPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="LichtPrint"
|
brandName="LichtPrint"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Get Quote", href: "/contact" }}
|
button={{ text: "Language", href: "#" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ export default function AboutPage() {
|
|||||||
<div className="mx-auto px-4 md:px-6">
|
<div className="mx-auto px-4 md:px-6">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
testimonial="Working with LichtPrint has transformed how we present our brand. Their expertise, attention to detail, and dedication to sustainability align perfectly with our company values. We couldn't ask for a better partner."
|
testimonial="Working with LichtPrint has transformed how we present our brand. Their expertise, attention to detail, and dedication to sustainability align perfectly with our company values. We couldn't ask for a better partner."
|
||||||
rating={5}
|
rating={4.5}
|
||||||
author="Michael Fischer, Director - Sustainable Design Co."
|
author="Michael Fischer, Director - Sustainable Design Co."
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Michael Fischer" },
|
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Michael Fischer" },
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ export default function ContactPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="LichtPrint"
|
brandName="LichtPrint"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Get Quote", href: "/contact" }}
|
button={{ text: "Language", href: "#" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,8 @@ const figtree = Figtree({
|
|||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "LichtPrint - Professional Print Solutions", description: "Premium printing services from digital to offset. High-quality print solutions for businesses of all sizes. Fast turnaround, competitive pricing, and exceptional customer service.", keywords: "printing services, digital printing, offset printing, packaging printing, print solutions, custom printing", metadataBase: new URL("https://lichtprint.de"),
|
title: "LichtPrint - Professional Print Solutions", description: "Premium printing services from digital to offset. High-quality print solutions for businesses of all sizes. Fast turnaround, competitive pricing, and exceptional customer service.", keywords: "printing services, digital printing, offset printing, packaging printing, print solutions, custom printing", metadataBase: new URL("https://lichtprint.de"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://lichtprint.de"},
|
canonical: "https://lichtprint.de"
|
||||||
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
@@ -19,7 +20,8 @@ export const metadata: Metadata = {
|
|||||||
openGraph: {
|
openGraph: {
|
||||||
title: "LichtPrint - Professional Print Solutions", description: "Premium printing services from digital to offset. High-quality print solutions for businesses of all sizes.", url: "https://lichtprint.de", siteName: "LichtPrint", type: "website", images: [
|
title: "LichtPrint - Professional Print Solutions", description: "Premium printing services from digital to offset. High-quality print solutions for businesses of all sizes.", url: "https://lichtprint.de", siteName: "LichtPrint", type: "website", images: [
|
||||||
{
|
{
|
||||||
url: "http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26587.jpg", alt: "LichtPrint Professional Print Solutions"},
|
url: "http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26587.jpg", alt: "LichtPrint Professional Print Solutions"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
@@ -37,7 +39,46 @@ export default function RootLayout({
|
|||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${figtree.variable} antialiased`}
|
className={`${figtree.variable} antialiased`}
|
||||||
|
style={{
|
||||||
|
WebkitFontSmoothing: 'antialiased',
|
||||||
|
textRendering: 'optimizeLegibility',
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
|
<style jsx global>{`
|
||||||
|
/* Hide Webild watermark */
|
||||||
|
[data-webild-watermark],
|
||||||
|
.webild-watermark,
|
||||||
|
[class*="watermark"],
|
||||||
|
iframe[src*="webild"] {
|
||||||
|
display: none !important;
|
||||||
|
visibility: hidden !important;
|
||||||
|
opacity: 0 !important;
|
||||||
|
pointer-events: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Performance optimizations */
|
||||||
|
* {
|
||||||
|
backface-visibility: hidden;
|
||||||
|
perspective: 1000px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
will-change: auto;
|
||||||
|
loading: lazy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
animation-duration: 0.01ms !important;
|
||||||
|
animation-iteration-count: 1 !important;
|
||||||
|
transition-duration: 0.01ms !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import { Zap, Cog, Leaf, Rocket, Printer, Package, Image, FileText, Bookmark, Sparkles, MapPin, Phone, Mail, Clock } from "lucide-react";
|
import { Zap, Cog, Leaf, Rocket, Printer, Package, Image, FileText, Bookmark, Sparkles, MapPin, Phone, Mail, Clock, Globe } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -52,7 +52,7 @@ export default function HomePage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="LichtPrint"
|
brandName="LichtPrint"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Get Quote", href: "/contact" }}
|
button={{ text: "Language", href: "#" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ export default function HomePage() {
|
|||||||
showBlur={true}
|
showBlur={true}
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get Started", href: "/contact" },
|
{ text: "Request a Quote", href: "/contact" },
|
||||||
{ text: "Learn More", href: "/about" },
|
{ text: "Learn More", href: "/about" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -135,9 +135,9 @@ export default function HomePage() {
|
|||||||
tag="Popular Products"
|
tag="Popular Products"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
products={[
|
products={[
|
||||||
{ id: "1", brand: "", name: "Premium Business Cards", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151272949.jpg?_wi=1", imageAlt: "Premium business cards" },
|
{ id: "1", brand: "", name: "Premium Business Cards", price: "", rating: 4.5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARK4PdridlZpDx9QrcHVnCrhiQ/uploaded-1772553135237-eub9hw96.png?_wi=1", imageAlt: "Premium business cards" },
|
||||||
{ id: "2", brand: "", name: "Brochures & Flyers", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26605.jpg?_wi=1", imageAlt: "Professional brochures and flyers" },
|
{ id: "2", brand: "", name: "Brochures & Flyers", price: "", rating: 4.5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARK4PdridlZpDx9QrcHVnCrhiQ/uploaded-1772553135237-3yv607ls.png?_wi=1", imageAlt: "Professional brochures and flyers" },
|
||||||
{ id: "3", brand: "", name: "Custom Packaging", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stack-colorful-present-boxes-dark-wooden-table_141793-8637.jpg?_wi=1", imageAlt: "Custom branded packaging" },
|
{ id: "3", brand: "", name: "Custom Packaging", price: "", rating: 4.5, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stack-colorful-present-boxes-dark-wooden-table_141793-8637.jpg?_wi=1", imageAlt: "Custom branded packaging" },
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -312,7 +312,7 @@ export default function HomePage() {
|
|||||||
<div className="mx-auto px-4 md:px-6">
|
<div className="mx-auto px-4 md:px-6">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
testimonial="LichtPrint has been instrumental in elevating our brand presence. Their attention to detail and commitment to quality is unmatched. The entire team is professional and responsive to our needs."
|
testimonial="LichtPrint has been instrumental in elevating our brand presence. Their attention to detail and commitment to quality is unmatched. The entire team is professional and responsive to our needs."
|
||||||
rating={5}
|
rating={4.5}
|
||||||
author="Sarah Mueller, CEO - Creative Agency"
|
author="Sarah Mueller, CEO - Creative Agency"
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Sarah Mueller" },
|
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Sarah Mueller" },
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export default function ProductsPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="LichtPrint"
|
brandName="LichtPrint"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Get Quote", href: "/contact" }}
|
button={{ text: "Language", href: "#" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -48,10 +48,10 @@ export default function ProductsPage() {
|
|||||||
tag="Full Catalog"
|
tag="Full Catalog"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
products={[
|
products={[
|
||||||
{ id: "1", brand: "", name: "Premium Business Cards", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151272949.jpg?_wi=2", imageAlt: "Premium business cards" },
|
{ id: "1", brand: "", name: "Premium Business Cards", price: "", rating: 4.5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARK4PdridlZpDx9QrcHVnCrhiQ/uploaded-1772553135237-eub9hw96.png?_wi=2", imageAlt: "Premium business cards" },
|
||||||
{ id: "2", brand: "", name: "Brochures & Flyers", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26605.jpg?_wi=2", imageAlt: "Professional brochures and flyers" },
|
{ id: "2", brand: "", name: "Brochures & Flyers", price: "", rating: 4.5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARK4PdridlZpDx9QrcHVnCrhiQ/uploaded-1772553135237-3yv607ls.png?_wi=2", imageAlt: "Professional brochures and flyers" },
|
||||||
{ id: "3", brand: "", name: "Custom Packaging", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stack-colorful-present-boxes-dark-wooden-table_141793-8637.jpg?_wi=2", imageAlt: "Custom branded packaging" },
|
{ id: "3", brand: "", name: "Custom Packaging", price: "", rating: 4.5, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stack-colorful-present-boxes-dark-wooden-table_141793-8637.jpg?_wi=2", imageAlt: "Custom branded packaging" },
|
||||||
{ id: "4", brand: "", name: "Postcards & Greetings", price: "", rating: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151272949.jpg?_wi=3", imageAlt: "Postcards and greeting cards" },
|
{ id: "4", brand: "", name: "Postcards & Greetings", price: "", rating: 4.5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARK4PdridlZpDx9QrcHVnCrhiQ/uploaded-1772553135237-eub9hw96.png?_wi=3", imageAlt: "Postcards and greeting cards" },
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export default function ServicesPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="LichtPrint"
|
brandName="LichtPrint"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Get Quote", href: "/contact" }}
|
button={{ text: "Language", href: "#" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user