-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
dc97ed8
commit c8e1b50
Showing
41 changed files
with
1,514 additions
and
434 deletions.
There are no files selected for viewing
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.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 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
Binary file not shown.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.container { | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 1.5rem; | ||
max-width: 100%; | ||
margin: 0 auto; | ||
padding: 0 16px; | ||
text-align: center; | ||
} | ||
|
||
.title { | ||
font-size: 3rem; | ||
font-weight: 700; | ||
margin: 0; | ||
} | ||
|
||
.title span { | ||
display: inline-block; | ||
background-image: linear-gradient(to right, #3b82f6, #ef4444); | ||
-webkit-background-clip: text; | ||
background-clip: text; | ||
color: transparent; | ||
} | ||
|
||
.description { | ||
color: #9ca3af; | ||
font-weight: 500; | ||
} | ||
|
||
.description a { | ||
color: #3b82f6; | ||
text-decoration: none; | ||
} | ||
|
||
.description a:hover { | ||
text-decoration: underline; | ||
} |
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,19 @@ | ||
import { Button } from "ui"; | ||
|
||
function App() { | ||
return ( | ||
<main className="mx-auto w-auto px-4 pt-16 pb-8 sm:pt-24 lg:px-8"> | ||
<h1 className="mx-auto max-w-5xl text-center text-6xl font-extrabold leading-[1.1] tracking-tighter text-white sm:text-7xl lg:text-8xl xl:text-8xl"> | ||
Web <br className="hidden lg:block" /> | ||
<span className="inline-block bg-gradient-to-r from-brandred to-brandblue bg-clip-text text-transparent"> | ||
Turborepo Example | ||
</span>{" "} | ||
</h1> | ||
<div className="mx-auto mt-5 max-w-xl sm:flex sm:justify-center md:mt-8"> | ||
<Button /> | ||
</div> | ||
</main> | ||
); | ||
} | ||
|
||
export default App; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from "react"; | ||
import ReactDOM from "react-dom"; | ||
import "./styles/globals.css"; | ||
// include styles from the ui package | ||
import "ui/styles.css"; | ||
import App from "./App"; | ||
|
||
ReactDOM.render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode>, | ||
document.getElementById("root") | ||
); |
Oops, something went wrong.