File size: 758 Bytes
b162b24
 
 
 
b40612a
b162b24
 
 
 
 
 
173eaab
 
b162b24
 
 
9b2221a
b162b24
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Form } from "@/components/form";

export default function Home() {
  return (
    <section className="h-screen p-8 lg:p-24 bg-stone-950 relative z-[1] overflow-y-auto">
      <Form>
        <header>
          <h1 className="text-white font-bold text-3xl">
            Start making music with AI
          </h1>
          <h2 className="text-white/70 font-medium mt-2 text-lg">
            <span className="text-white font-semibold">In-browser</span>{" "}
            text-to-music generation
          </h2>
        </header>
      </Form>
      <div className="w-full lg:w-[400px] h-[250px] lg:h-[400px] bg-gradient-to-br from-amber-300 to-amber-600 absolute left-0 top-0 -z-[1] blur-2xl lg:blur-[230px] max-lg:opacity-60" />
    </section>
  );
}