8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import Link from 'next/link';
|
||
|
|
|
||
|
|
export default function HomePage() {
|
||
|
|
return <div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 p-8"></div>;
|
||
|
|
}
|