Skip to content

Commit 565bbd3

Browse files
Entropy Arcade example (Pyth Entropy)
1 parent 7262daf commit 565bbd3

File tree

2 files changed

+0
-137
lines changed

2 files changed

+0
-137
lines changed

entropy-arcade/src/app/layout.tsx

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,3 @@
1-
// import type { Metadata } from "next";
2-
// import { Inter } from "next/font/google";
3-
// import "../styles/globals.css";
4-
5-
// const inter = Inter({ subsets: ["latin"] });
6-
7-
// export const metadata: Metadata = {
8-
// title: "YellowLane - Invest in Virality",
9-
// description: "Bet on creator growth. Powered by Yellow Network.",
10-
// };
11-
12-
// export default function RootLayout({
13-
// children,
14-
// }: {
15-
// children: React.ReactNode;
16-
// }) {
17-
// return (
18-
// <html lang="en">
19-
// <body className={inter.className}>
20-
// <main className="pb-16">{children}</main>
21-
// </body>
22-
// </html>
23-
// );
24-
// }
25-
26-
// // src/app/layout.tsx
27-
// import type { Metadata } from "next";
28-
// import "@/styles/globals.css";
29-
// import { BackgroundCanvas } from "@/components/bg/BackgroundCanvas";
30-
31-
// export const metadata: Metadata = {
32-
// title: "Entropy Arcade – Home",
33-
// description:
34-
// "Provably-random arcade modes powered by on-chain entropy (Pyth) for fair staking and high replayability.",
35-
// };
36-
37-
// export default function RootLayout({
38-
// children,
39-
// }: {
40-
// children: React.ReactNode;
41-
// }) {
42-
// return (
43-
// <html lang="en" className="js-anim">
44-
// <head>
45-
// <link
46-
// href="https://api.fontshare.com/v2/css?f[]=eudoxus-sans@400,500,600,700&display=swap"
47-
// rel="stylesheet"
48-
// />
49-
// </head>
50-
// <body className="overflow-x-hidden">
51-
// {/* Starry background */}
52-
// <BackgroundCanvas />
53-
54-
// {/* Your content */}
55-
// {children}
56-
// </body>
57-
// </html>
58-
// );
59-
// }
60-
61-
// // src/app/layout.tsx
62-
// import type { Metadata } from "next";
63-
// import "@/styles/globals.css";
64-
// import { BackgroundCanvas } from "@/components/bg/BackgroundCanvas";
65-
66-
// export const metadata: Metadata = {
67-
// title: "Entropy Arcade – Home",
68-
// description:
69-
// "Provably-random arcade modes powered by on-chain entropy (Pyth) for fair staking and high replayability.",
70-
// };
71-
72-
// export default function RootLayout({
73-
// children,
74-
// }: {
75-
// children: React.ReactNode;
76-
// }) {
77-
// return (
78-
// <html lang="en" className="js-anim">
79-
// <head>
80-
// <link
81-
// href="https://api.fontshare.com/v2/css?f[]=eudoxus-sans@400,500,600,700&display=swap"
82-
// rel="stylesheet"
83-
// />
84-
// </head>
85-
// <body className="overflow-x-hidden">
86-
// {/* Starry background */}
87-
// <BackgroundCanvas />
88-
89-
// {/* Your content */}
90-
// {children}
91-
// </body>
92-
// </html>
93-
// );
94-
// }
95-
961
// src/app/layout.tsx
972
import type { Metadata } from "next";
983
import "@/styles/globals.css";

entropy-arcade/src/components/Navbar.tsx

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,3 @@
1-
// "use client";
2-
// import Link from "next/link";
3-
4-
// export function Navbar() {
5-
// return (
6-
// <header className="relative px-8 sm:px-20 py-8" data-animate>
7-
// <div className="relative mx-auto max-w-7xl lg:max-w-8xl flex items-center justify-between gap-8">
8-
// <div className="flex items-center gap-3">
9-
// <div className="w-7 h-7 rounded-full border border-white/30" />
10-
// <h1 className="font-extrabold text-[20px] sm:text-[22px] tracking-wide">
11-
// ENTROPY ARCADE
12-
// </h1>
13-
// </div>
14-
// <nav className="hidden md:block">
15-
// <ul className="flex items-center gap-3">
16-
// <li>
17-
// <Link className="nav-pill active" href="#home">
18-
// Home
19-
// </Link>
20-
// </li>
21-
// <li>
22-
// <Link className="nav-pill" href="#games">
23-
// Games
24-
// </Link>
25-
// </li>
26-
// <li>
27-
// <Link className="nav-pill" href="#golive">
28-
// Go Live
29-
// </Link>
30-
// </li>
31-
// <li>
32-
// <Link className="nav-pill" href="#profile">
33-
// Profile
34-
// </Link>
35-
// </li>
36-
// </ul>
37-
// </nav>
38-
// </div>
39-
// </header>
40-
// );
41-
// }
42-
431
// src/components/Navbar.tsx
442
"use client";
453
import Link from "next/link";

0 commit comments

Comments
 (0)