7 Commits

Author SHA1 Message Date
79d509b50b Merge version_3 into main
Merge version_3 into main
2026-03-05 07:08:41 +00:00
90e1091b50 Update src/app/page.tsx 2026-03-05 07:08:37 +00:00
c078db2d2a Update src/app/layout.tsx 2026-03-05 07:08:37 +00:00
82aefd9dc9 Merge version_2 into main
Merge version_2 into main
2026-03-05 06:41:09 +00:00
ddf8bcd881 Update src/app/page.tsx 2026-03-05 06:41:05 +00:00
b5a206d441 Update src/app/layout.tsx 2026-03-05 06:41:05 +00:00
91b03f2873 Merge version_1 into main
Merge version_1 into main
2026-03-05 06:35:47 +00:00
2 changed files with 47 additions and 55 deletions

View File

@@ -1,44 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Civil Engineering Jobs | CareerBuild Career Platform", description: "Discover your next civil engineering role. Connect with leading construction and infrastructure firms. Free for professionals, trusted by 5,000+ engineers.", keywords: "civil engineering jobs, construction careers, infrastructure jobs, engineer positions, structural engineer jobs", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Civil Engineering Jobs | CareerBuild", description: "Find your next civil engineering opportunity with CareerBuild. Connect with top construction and engineering firms.", url: "https://careerbuild.example.com", siteName: "CareerBuild", type: "website"},
twitter: {
card: "summary_large_image", title: "Civil Engineering Jobs | CareerBuild", description: "Find civil engineering roles that match your expertise. Browse 2,800+ positions from 450+ partner companies."},
title: "CareerBuild - Civil Engineering Jobs", description: "Connect with leading construction, infrastructure, and engineering firms. Discover opportunities that match your expertise and career goals in the civil engineering field."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -43,29 +43,43 @@ export default function LandingPage() {
/>
</div>
<div id="hero" data-section="hero">
<HeroCentered
title="Find Your Next Civil Engineering Role"
description="Connect with leading construction, infrastructure, and engineering firms. Discover opportunities that match your expertise and career goals in the civil engineering field."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/young-workman-wearing-white-hard-hat_1303-26649.jpg", alt: "professional engineer male portrait"
},
{
src: "http://img.b2bpic.net/free-photo/business-woman-hard-hat-using-laptop_1303-29779.jpg", alt: "professional engineer female portrait"
},
{
src: "http://img.b2bpic.net/free-photo/young-workman-wearing-white-hard-hat_1303-26649.jpg", alt: "professional construction worker portrait"
},
]}
avatarText="Trusted by 5,000+ civil professionals"
buttons={[
{ text: "Browse Jobs", href: "#features" },
{ text: "For Employers", href: "#contact" },
]}
background={{ variant: "downward-rays-static" }}
buttonAnimation="slide-up"
/>
<div id="hero" data-section="hero" style={{
backgroundImage: 'url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600&h=900&fit=crop")',
backgroundSize: 'cover',
backgroundPosition: 'center',
backgroundAttachment: 'fixed',
position: 'relative'
}}>
<div style={{
position: 'absolute',
inset: 0,
backgroundColor: 'rgba(0, 0, 0, 0.4)',
zIndex: 1
}} />
<div style={{ position: 'relative', zIndex: 2 }}>
<HeroCentered
title="Land Your Next Civil Engineering Role in Weeks, Not Months"
description="Connect with leading construction, infrastructure, and engineering firms. Discover opportunities that match your expertise and career goals in the civil engineering field."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/young-workman-wearing-white-hard-hat_1303-26649.jpg", alt: "professional engineer male portrait"
},
{
src: "http://img.b2bpic.net/free-photo/business-woman-hard-hat-using-laptop_1303-29779.jpg", alt: "professional engineer female portrait"
},
{
src: "http://img.b2bpic.net/free-photo/young-workman-wearing-white-hard-hat_1303-26649.jpg", alt: "professional construction worker portrait"
},
]}
avatarText="Trusted by 5,000+ civil professionals"
buttons={[
{ text: "Browse Jobs", href: "#features" },
{ text: "For Employers", href: "#contact" },
]}
background={{ variant: "plain" }}
buttonAnimation="slide-up"
/>
</div>
</div>
<div id="about" data-section="about">
@@ -260,4 +274,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}