mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-15 15:48:56 -05:00
This reverts commit b1fdfc19a92241638692d58494f48ce1bb25df74, reversing changes made to b9e2087bd8cd9e8ed7a5862936609b5bf29aa911.
24 lines
705 B
TypeScript
24 lines
705 B
TypeScript
"use client";
|
|
|
|
/**
|
|
* HomeTab component displays the main landing content for the mini app.
|
|
*
|
|
* This is the default tab that users see when they first open the mini app.
|
|
* It provides a simple welcome message and placeholder content that can be
|
|
* customized for specific use cases.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* <HomeTab />
|
|
* ```
|
|
*/
|
|
export function HomeTab() {
|
|
return (
|
|
<div className="flex items-center justify-center h-[calc(100vh-200px)] px-6">
|
|
<div className="text-center w-full max-w-md mx-auto">
|
|
<p className="text-lg mb-2">Put your content here!</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400">Powered by Neynar 🪐</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|