initial commit

This commit is contained in:
Harivansh Rathi 2024-11-25 19:28:40 -05:00
commit 9963e01acc
158 changed files with 48198 additions and 0 deletions

View file

@ -0,0 +1,11 @@
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>
);