-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
200 additions
and
49 deletions.
There are no files selected for viewing
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ["./src/**/*.{html,js,svelte,ts}", "./layout/**/*.{html,js,svelte,ts}", , "../ui/**/*.{html,js,svelte,ts}"], | ||
theme: { | ||
extend: { | ||
colors: { | ||
gray: { | ||
100: "#ffffff", | ||
200: "#d3cfcf", | ||
500: "#282828", | ||
600: "#1E1E1E", | ||
700: "#141414", | ||
800: "#0a0a0a", | ||
900: "#000000", | ||
}, | ||
popup: { | ||
red: "#CC001B", | ||
green: "#28A443", | ||
blue: "#16A3DF", | ||
yellow: "#F5AB00", | ||
magenta: "#9B5094", | ||
}, | ||
cores: { | ||
min: "#35cbfd", | ||
current: "#ff5380", | ||
max: "#9d0cfd", | ||
alternative: "#d800ef", | ||
}, | ||
html: { | ||
gray: "#808080", | ||
}, | ||
}, | ||
|
||
borderRadius: { | ||
xl: "15px", | ||
"2xl": "30px", | ||
}, | ||
|
||
screens: { | ||
sm: { max: "1200px" }, | ||
}, | ||
}, | ||
}, | ||
plugins: [ | ||
require("@tailwindcss/forms")({ | ||
strategy: "class", | ||
}), | ||
], | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ export default defineConfig({ | |
}, | ||
}, | ||
emptyOutDir: true, | ||
outDir: "../../dist", | ||
outDir: "../../../dist", | ||
}, | ||
}) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
packages/config/tailwind.config.js → platforms/interface/ui/tailwind.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
platforms/interface/web/src/routes/(marketing)/get-started/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Header /> | ||
|
||
<div class="mb-48 mt-16"> | ||
<GetStarted /> | ||
</div> | ||
|
||
<Footer /> | ||
|
||
<script lang="ts"> | ||
import Footer from "../../../components/footer.svelte" | ||
import GetStarted from "../../../components/getStarted.svelte" | ||
import Header from "../../../components/header.svelte" | ||
</script> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ["./src/**/*.{html,js,svelte,ts}", "./layout/**/*.{html,js,svelte,ts}", , "../ui/**/*.{html,js,svelte,ts}"], | ||
theme: { | ||
extend: { | ||
colors: { | ||
gray: { | ||
100: "#ffffff", | ||
200: "#d3cfcf", | ||
500: "#282828", | ||
600: "#1E1E1E", | ||
700: "#141414", | ||
800: "#0a0a0a", | ||
900: "#000000", | ||
}, | ||
popup: { | ||
red: "#CC001B", | ||
green: "#28A443", | ||
blue: "#16A3DF", | ||
yellow: "#F5AB00", | ||
magenta: "#9B5094", | ||
}, | ||
cores: { | ||
min: "#35cbfd", | ||
current: "#ff5380", | ||
max: "#9d0cfd", | ||
alternative: "#d800ef", | ||
}, | ||
html: { | ||
gray: "#808080", | ||
}, | ||
}, | ||
|
||
borderRadius: { | ||
xl: "15px", | ||
"2xl": "30px", | ||
}, | ||
|
||
screens: { | ||
sm: { max: "1200px" }, | ||
}, | ||
}, | ||
}, | ||
plugins: [ | ||
require("@tailwindcss/forms")({ | ||
strategy: "class", | ||
}), | ||
], | ||
} |
File renamed without changes.
File renamed without changes.