This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
Tony Marsella bf7342f998 adds sections for shiloh services
githaven, remnant chat, agilegrace
2023-06-26 16:04:34 -07:00

33 lines
830 B
JavaScript

import Button from "../buttons/Button.jsx";
import ContactThreeJsComponent from "../elements/ContactThreeJsComponent.jsx";
const SectionTwo = ({
buttonText,
buttonLink,
text,
}) => {
return (
<>
<div id="contact" className="relative z-10 h-screen w-screen">
<div className="absolute inset-0 z-0">
</div>
<div className="relative z-10 flex flex-col items-center justify-center h-full">
<div className="relative flex justify-center items-end w-full mb-20">
<h1 className="text-6xl font-normal text-white">{text}</h1>
</div>
<div className="flex justify-start space-x-4">
<Button
buttonText={buttonText}
buttonLink={buttonLink}
/>
</div>
</div>
</div>
</>
);
};
export default SectionTwo;