Skip to content

Commit 3a4d3b3

Browse files
committed
added basic docs site
1 parent 7d9adf9 commit 3a4d3b3

File tree

15 files changed

+7883
-2
lines changed

15 files changed

+7883
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,7 @@ gradle-app.setting
199199

200200
# End of https://www.toptal.com/developers/gitignore/api/gradle,intellij,maven,kotlin,java
201201

202-
.kotlin/
202+
.kotlin/
203+
204+
node-modules/
205+
.next/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It supports:
1212
* Compiling Taxi projects
1313
* Testing Taxi queries
1414
* Stubbing data sources
15-
* (Planned): Running against real data sources using [Nebula](https://nebula.orbitalhq.com) in tests is planned
15+
* (Planned): Running against real data sources using [Nebula](https://nebula.orbitalhq.com) in tests is planned [#2]
1616

1717
## Adding Preflight to your Taxi project
1818

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
.next/

docs/global.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
@plugin "@tailwindcss/typography"
6+
7+
8+
@layer base {
9+
@font-face {
10+
font-family: 'Roboto';
11+
font-style: normal;
12+
font-weight: 400;
13+
font-display: swap;
14+
src: url(/fonts/Roboto.woff2) format('woff2');
15+
}
16+
}

docs/next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

docs/next.config.mjs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import nextra from 'nextra'
2+
3+
const withNextra = nextra({
4+
theme: 'nextra-theme-docs',
5+
themeConfig: './theme.config.tsx',
6+
latex: true,
7+
search: {
8+
codeblocks: false
9+
}
10+
})
11+
12+
export default withNextra({
13+
reactStrictMode: true
14+
})

0 commit comments

Comments
 (0)