Files
tm-landing/app/(home)/contact-us/page.tsx
T
AmirReza Jamali 6c7cc6d3ee feat(ui): Overhaul homepage and layout styling for responsiveness
Refactors the styling across the main layout, homepage, and contact page to improve responsiveness and visual consistency.

Key changes include:
- Adjusted font sizes, spacing, and padding on the homepage for better scaling on different screen sizes.
- Simplified the hero section image and layout.
- Updated the footer design, removing the background image and changing text color from white to black for better readability.
- Replaced React fragments with `<main>` tags for improved semantic HTML on the contact page.
- Streamlined header and content padding in the main layout.
2025-10-26 15:30:29 +03:30

50 lines
1.6 KiB
TypeScript

import ContactUsForm from "@/app/_contact-us/form";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Opp lens - Contact Us",
description:
"Automated tender management platform for SMEs. Find tailored tenders, automate document handling, and get real-time alerts. Win more opportunities with less effort.",
keywords:
"tender management, AI tender search, SME tenders, public procurement, automated bidding, tender alerts",
authors: [{ name: "PBL Partners AB" }],
openGraph: {
title: "Opp lens - AI-Powered Tender Management",
description: "Win more tenders automatically with our AI-powered platform",
type: "website",
locale: "en_US",
siteName: "Opp lens",
},
icons: {
icon: "/fav-icon.svg",
},
};
const ContactUsPage = () => {
return (
<main>
<div className="flex flex-col gap-6 items-center">
<p className="bg-(--primary)/20 w-fit px-2.5 py-1.5 text-(--primary) rounded-full">
Contact Us
</p>
<h1 className="font-extrabold text-5xl">Let's Get In Touch</h1>
<p className="text-[16px] font-normal">
Or just reach out manually to
<a
href="mailto:info@opplens.com"
className="text-(--primary) mx-1">
info@opplens.com
</a>
</p>
</div>
<div className="flex flex-col items-center mt-16 px-8 ">
<section className="border border-gray-300 rounded-4xl w-full lg:max-w-2/3 flex flex-col items-center bg-white">
<ContactUsForm columnsPerRow={1} />
</section>
</div>
</main>
);
};
export default ContactUsPage;