mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 04:03:31 +00:00
67 lines
2.1 KiB
TypeScript
67 lines
2.1 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect } from 'react'
|
|
import { Sparkles } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Skeleton } from '@/components/ui/skeleton'
|
|
|
|
const IframeWithSkeleton = () => {
|
|
const [iframeLoaded, setIframeLoaded] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const iframe = document.getElementById('youtube-iframe') as HTMLIFrameElement;
|
|
if (iframe) {
|
|
const handleIframeLoad = () => {
|
|
setIframeLoaded(true);
|
|
};
|
|
|
|
iframe.addEventListener('load', handleIframeLoad);
|
|
|
|
return () => {
|
|
iframe.removeEventListener('load', handleIframeLoad);
|
|
};
|
|
}
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
{!iframeLoaded && <Skeleton className="w-full max-w-2xl h-auto aspect-video" />}
|
|
<iframe
|
|
id="youtube-iframe"
|
|
src="https://www.youtube.com/embed/Q6jDdtbkMIU?si=YtgU89RhYiwt5-U5"
|
|
title="YouTube Video Player"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
className={`w-full max-w-2xl h-auto aspect-video rounded-[6px] ${iframeLoaded ? '' : 'hidden'}`}
|
|
></iframe>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const Header = () => {
|
|
return (
|
|
<div className="space-y-20 mt-32">
|
|
<div className="mx-auto grid grid-cols-1 lg:grid-cols-2 gap-8">
|
|
<div className="flex flex-col justify-center text-center lg:text-left ">
|
|
<h2 className="text-4xl font-extrabold sm:text-5xl">
|
|
Clone. Build. Ship.
|
|
</h2>
|
|
<p className="mt-4 text-lg text-foreground">
|
|
Build your SaaS faster with our fully customizable template.
|
|
</p>
|
|
<div className="flex justify-center lg:justify-start items-center mt-4">
|
|
<Link href="/overview">
|
|
<Button className="gap-2">
|
|
<Sparkles className="h-5 w-5" />
|
|
<span>Get Started</span>
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center justify-center rounded-lg overflow-hidden">
|
|
<IframeWithSkeleton />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|