24 lines
913 B
JavaScript
24 lines
913 B
JavaScript
import React from "react";
|
|
|
|
export default function Pagetitle() {
|
|
return (
|
|
<section className="section-frame overflow-hidden xl:mx-6 xl:rounded-2xl lg:mx-6 lg:rounded-2xl md:mx-6 md:rounded-2xl">
|
|
<div className="wrapper bg-[rgba(246,247,249,1)]">
|
|
<div className="container py-16 xl:!py-28 lg:!py-28 md:!py-28 !text-center">
|
|
<div className="flex flex-wrap mx-[-15px]">
|
|
<div className="lg:w-10/12 xl:w-10/12 xxl:w-8/12 w-full flex-[0_0_auto] !px-[15px] max-w-full !mx-auto">
|
|
<h1 className="!text-[calc(1.365rem_+_1.38vw)] font-bold !leading-[1.2] xl:!text-[2.4rem] !mb-1">
|
|
Check out some of our awesome projects with creative ideas.
|
|
</h1>
|
|
</div>
|
|
{/* /column */}
|
|
</div>
|
|
{/* /.row */}
|
|
</div>
|
|
{/* /.container */}
|
|
</div>
|
|
{/* /.wrapper */}
|
|
</section>
|
|
);
|
|
}
|