9 Commits

Author SHA1 Message Date
0cb947230b Update src/app/page.tsx 2026-03-04 03:21:27 +00:00
9a1aa21fd0 Update src/app/page.tsx 2026-03-04 03:20:04 +00:00
c256c050a3 Update src/app/layout.tsx 2026-03-04 03:20:03 +00:00
e8ab61df3f Merge version_1 into main
Merge version_1 into main
2026-03-04 03:18:23 +00:00
9bce8d158e Merge version_1 into main
Merge version_1 into main
2026-03-04 03:17:02 +00:00
d09b3250c1 Merge version_1 into main
Merge version_1 into main
2026-03-04 03:15:43 +00:00
495e585c37 Merge version_1 into main
Merge version_1 into main
2026-03-04 03:14:28 +00:00
59a0ee9d5f Merge version_1 into main
Merge version_1 into main
2026-03-04 03:13:15 +00:00
813714e5bc Merge version_1 into main
Merge version_1 into main
2026-03-04 03:11:54 +00:00
2 changed files with 12 additions and 47 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Urbanist } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const urbanist = Urbanist({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Dunam | Custom Nordic Homes in Norway", description: "Premium custom Nordic-style home construction in Norway. From architectural design to complete build, we create modern Scandinavian homes tailored to your vision.", keywords: "Nordic homes, custom construction Norway, Scandinavian architecture, modern house building, Oslo construction", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Dunam | Custom Nordic Homes", description: "Build your perfect Nordic-style home with Dunam's expert construction services in Norway.", type: "website", siteName: "Dunam", images: [
{
url: "http://img.b2bpic.net/free-photo/picture-wooden-building-forest_259150-58903.jpg", alt: "Modern Nordic home by Dunam"},
],
},
twitter: {
card: "summary_large_image", title: "Dunam | Custom Nordic Homes", description: "Premium Nordic house construction in Norway", images: ["http://img.b2bpic.net/free-photo/picture-wooden-building-forest_259150-58903.jpg"],
},
};
title: "Dunam - Modern Nordic Houses", description: "Custom Nordic-style homes built with precision and passion"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={urbanist.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Building2, Compass, Pencil, Hammer, Lightbulb, Image, Mail, Star, Hammer2 } from "lucide-react";
import { Building2, Compass, Pencil, Hammer, Lightbulb, Image, Mail, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -101,13 +101,13 @@ export default function LandingPage() {
tagAnimation="slide-up"
features={[
{
id: "design", title: "Architectural Design", description: "Custom design services tailored to your vision, incorporating Nordic principles of minimalism and functionality with modern living standards", imageSrc: "http://img.b2bpic.net/free-photo/paper-cup-books-cozy-room-interior-concept-coziness_169016-57005.jpg", imageAlt: "Architectural design services"
id: "design", title: "Architectural Design", description: "Transform your vision into stunning Nordic designs. We create custom architectural plans that blend Scandinavian minimalism with modern functionality, ensuring every detail reflects your lifestyle and maximizes natural light and space efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/paper-cup-books-cozy-room-interior-concept-coziness_169016-57005.jpg", imageAlt: "Architectural design services"
},
{
id: "planning", title: "Project Planning", description: "Detailed project planning from permits to timeline management. We handle all the complexities so you focus on your dream home", imageSrc: "http://img.b2bpic.net/free-photo/two-fellow-architects-standing-table-discussing-project-modern-office_482257-31140.jpg", imageAlt: "Project planning and blueprints"
id: "planning", title: "Project Planning", description: "From permits to timeline management, we handle all project complexities so you can focus on your dream. Our comprehensive planning ensures smooth execution, regulatory compliance, and predictable budgets while keeping you informed every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/two-fellow-architects-standing-table-discussing-project-modern-office_482257-31140.jpg", imageAlt: "Project planning and blueprints"
},
{
id: "building", title: "Custom Building", description: "Expert construction by experienced craftsmen using premium materials. Quality control at every stage of the building process", imageSrc: "http://img.b2bpic.net/free-photo/building-construction-workers-site_23-2149124306.jpg", imageAlt: "Custom home construction"
id: "building", title: "Custom Building", description: "Expert craftsmanship meets premium materials in every build. Our experienced team provides rigorous quality control at every construction stage, delivering homes built to last with exceptional attention to detail and structural integrity throughout the process.", imageSrc: "http://img.b2bpic.net/free-photo/building-construction-workers-site_23-2149124306.jpg", imageAlt: "Custom home construction"
},
]}
gridVariant="three-columns-all-equal-width"
@@ -249,4 +249,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}