imwithye commited on
Commit
5409b84
·
1 Parent(s): ed482ba
Files changed (1) hide show
  1. src/app/page.tsx +15 -2
src/app/page.tsx CHANGED
@@ -2,8 +2,21 @@ import { Canvas } from "@/components/canvas";
2
 
3
  export default function Home() {
4
  return (
5
- <>
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  <Canvas />
7
- </>
8
  );
9
  }
 
2
 
3
  export default function Home() {
4
  return (
5
+ <div className="w-full h-full">
6
+ <div className="absolute inset-0 z-10 pointer-events-none">
7
+ <div className="w-full h-full p-6">
8
+ <div className="text-6xl font-bold">Rubik&apos;s Cube Solver</div>
9
+ <div className="text-2xl text-gray-800">
10
+ with Reinforcement Learning
11
+ </div>
12
+ <div className="text-gray-700">
13
+ <a href="https://cross-entropy.ai">
14
+ https://cross-entropy.ai
15
+ </a>
16
+ </div>
17
+ </div>
18
+ </div>
19
  <Canvas />
20
+ </div>
21
  );
22
  }