import type { Metadata } from "next" import Link from "next/link" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" export const metadata: Metadata = { title: "Sign Up", description: "Create your Higgy's Android Boxes account to access exclusive video tutorials and support.", } export default function SignupPage() { return (
Create an account Sign up to access exclusive video tutorials and support

Already have an account?{" "} Log in

) }