oonyeje-portfolio/components/form/GoogleAppointmentBlock.tsx
oonyeje 1003b27e95 - working on appointments block
(cherry picked from commit 7a010a4f8e0362b0f344e8fe5cf8df58f2cf5e65)
2025-03-05 14:22:30 -05:00

16 lines
484 B
TypeScript

const GoogleAppointmentBlock = () => {
const {GOOGLE_APPOINTMENTS_LINK} = process.env;
console.log(GOOGLE_APPOINTMENTS_LINK)
return (
<div className='w-full h-full flex flex-row justify-center bg-white border-solid'>
<embed
src={GOOGLE_APPOINTMENTS_LINK!}
style={{border: 1}}
width="100%"
height="600"
></embed>
</div>
);
}
export default GoogleAppointmentBlock;