This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
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
Showing
15 changed files
with
544 additions
and
231 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,47 @@ | ||
import '../styles/globals.css' | ||
import Image from "next/image"; | ||
import "tailwindcss/tailwind.css"; | ||
|
||
function MyApp({ Component, pageProps }) { | ||
return <Component {...pageProps} /> | ||
} | ||
const Preview = () => ( | ||
<div className="min-h-screen flex flex-col items-center justify-center bg-pink-100"> | ||
<div className="text-2xl text-gray-700 m-7"> | ||
Beautiful pictures with quotes of great people | ||
</div> | ||
<div className="flex flex-row flex-wrap justify-center md:space-x-4"> | ||
<div> | ||
<Image | ||
className="rounded-lg" | ||
src="/preview1.png" | ||
width={300} | ||
height={540} | ||
/> | ||
</div> | ||
<div> | ||
<Image | ||
className="rounded-lg" | ||
src="/preview2.png" | ||
width={300} | ||
height={540} | ||
/> | ||
</div> | ||
<div> | ||
<Image | ||
className="rounded-lg" | ||
src="/preview3.png" | ||
width={300} | ||
height={540} | ||
/> | ||
</div> | ||
</div> | ||
|
||
export default MyApp | ||
<div className="max-w-xs"> | ||
<a href="https://play.google.com/store/apps/details?id=space.bytedeal.kuote"> | ||
<img | ||
alt="Get it on Google Play" | ||
src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" | ||
/> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default Preview; |
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,28 @@ | ||
import Document, { Html, Head, Main, NextScript } from "next/document"; | ||
|
||
class MyDocument extends Document { | ||
static async getInitialProps(ctx) { | ||
const initialProps = await Document.getInitialProps(ctx); | ||
return { ...initialProps }; | ||
} | ||
|
||
render() { | ||
return ( | ||
<Html> | ||
<Head> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</Head> | ||
<body> | ||
<Main /> | ||
<NextScript /> | ||
</body> | ||
</Html> | ||
); | ||
} | ||
} | ||
|
||
export default MyDocument; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
}; |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module.exports = { | ||
purge: ["./pages/**/*.{js,ts,jsx,tsx}"], | ||
darkMode: false, | ||
theme: { | ||
extend: {}, | ||
fontFamily: { | ||
sans: ["Montserrat"] | ||
} | ||
}, | ||
variants: { | ||
extend: {} | ||
}, | ||
plugins: [] | ||
}; |