Saas-Teamspace-2/src/templates/DemoBanner.tsx
2024-11-25 19:28:40 -05:00

11 lines
274 B
TypeScript

import Link from 'next/link';
import { StickyBanner } from '@/features/landing/StickyBanner';
export const DemoBanner = () => (
<StickyBanner>
Live Demo of SaaS Boilerplate -
{' '}
<Link href="/sign-up">Explore the User Dashboard</Link>
</StickyBanner>
);