aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-landing/components/Layout.tsx
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2022-12-13 17:25:46 -0800
committerGravatar Ashcon Partovi <ashcon@partovi.net> 2022-12-13 17:25:46 -0800
commit375f69559fe26bf358573b8ecb2ad5f8ef7aac17 (patch)
treef0949a1c9d14b18613eb031b4ac535b95f74c3fb /packages/bun-landing/components/Layout.tsx
parent7d15a040fdb9f486d14796ec066701dbdbb70ecb (diff)
downloadbun-375f69559fe26bf358573b8ecb2ad5f8ef7aac17.tar.gz
bun-375f69559fe26bf358573b8ecb2ad5f8ef7aac17.tar.zst
bun-375f69559fe26bf358573b8ecb2ad5f8ef7aac17.zip
Move bun-landing to another repository
Diffstat (limited to 'packages/bun-landing/components/Layout.tsx')
-rw-r--r--packages/bun-landing/components/Layout.tsx99
1 files changed, 0 insertions, 99 deletions
diff --git a/packages/bun-landing/components/Layout.tsx b/packages/bun-landing/components/Layout.tsx
deleted file mode 100644
index 3c2e0407a..000000000
--- a/packages/bun-landing/components/Layout.tsx
+++ /dev/null
@@ -1,99 +0,0 @@
-import Head from "next/head";
-import { dataURI } from "macro:./dataURI";
-
-export default function Layout({ children }) {
- return (
- <>
- <Head>
- <meta charSet="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta
- property="og:title"
- content="Bun is a fast all-in-one JavaScript runtime"
- />
- <title>Bun is a fast all-in-one JavaScript runtime</title>
- <meta
- property="og:description"
- content={`Bundle, transpile, install and run JavaScript & TypeScript
- projects – all in Bun. Bun is a new JavaScript runtime with
- a native bundler, transpiler, task runner and npm client built-in.`}
- />
- <meta name="og:locale" content="en_US" />
- <meta name="twitter:site" content="@jarredsumner" />
- <meta name="twitter:card" content="summary_large_image" />
- <meta property="og:image" content="https://bun.sh/share.png" />
- <meta
- name="description"
- content={`Bundle, transpile, install and run JavaScript & TypeScript
- projects – all in Bun. Bun is a new JavaScript runtime with
- a native bundler, transpiler, task runner and npm client built-in.`}
- />
- <meta name="theme-color" content="#fbf0df" />
- <link rel="manifest" href="manifest.json" />
- <link
- rel="icon"
- type="image/png"
- sizes="256x256"
- href="/logo-square.png"
- />
- <link
- rel="icon"
- type="image/png"
- sizes="32x32"
- href="/logo-square@32px.png"
- />
- <link
- rel="icon"
- type="image/png"
- sizes="16x16"
- href="/logo-square@16px.png"
- />
- </Head>
- <body>
- <div id="header-wrap">
- <header>
- <a href="/" id="logo-link" aria-label="home">
- <img
- height="61px"
- src={dataURI("../public/logo.svg", "components/Layout.tsx")}
- alt="Bun logo"
- id="logo"
- />
-
- <img
- alt="Bun"
- id="logo-text"
- height="31.65px"
- src={dataURI("../public/Bun@2x.png", "components/Layout.tsx")}
- />
- </a>
-
- <nav className="Navigation">
- <ul>
- <li>
- <a
- className="NavText"
- href="https://github.com/oven-sh/bun#Reference"
- >
- Docs
- </a>
- </li>
- <li>
- <a className="NavText" href="https://bun.sh/discord">
- Discord
- </a>
- </li>
- <li>
- <a className="NavText" href="https://github.com/oven-sh/bun">
- GitHub
- </a>
- </li>
- </ul>
- </nav>
- </header>
- </div>
- {children}
- </body>
- </>
- );
-}