Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions components/HeaderBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ const HeaderBarLoggedIn = () => {
return (
<>
<Link href="/presos">
<a>Presos</a>
<a className="font-display">PRESOS</a>
</Link>
<Link href="/surveys">
<a>Surveys</a>
<a className="font-display">SURVEYS</a>
</Link>
<Link href="/groupies">
<a>Audience</a>
<a className="font-display">AUDIENCE</a>
</Link>
<Link href="/account">
<a>Account</a>
<a className="font-display">ACCOUNT</a>
</Link>
<button
className=""
Expand All @@ -32,7 +32,7 @@ const HeaderBarLoggedIn = () => {
if (error) console.error('Error logging out.')
}}
>
Logout
LOGOUT
</button>
</>
)
Expand Down
1 change: 1 addition & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default function Ngosi({ Component, pageProps }: AppProps) {
<title>Ngosi</title>
<link rel="icon" href="/favicon.ico" />
</Head>

<div
id="shell"
className="flex flex-col min-h-screen min-w-full bg-background-primary items-center justify-center"
Expand Down
21 changes: 10 additions & 11 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,17 @@ const Home: NextPage = () => {
<Script
src="https://cdn.onesignal.com/sdks/OneSignalSDK.js"
strategy="beforeInteractive"
></Script>

<div className="prose mt-5">
<div>
<div className="float-right">
<Image src="/images/ngosi.png" width={200} height={200} alt="" />
></Script>
<div className="">
<div className="grid grid-cols-2 h-96 m-4">
<div className="flex flex-col justify-center">
<h1 className='text-left text-xl'>Ngosi</h1>
<p>
ngosi enables trainers, lecturers, and other continuing education
professionals to engage and empower their audiences.
</p>
</div>
<h1>ngosi</h1>
<p>
ngosi enables trainers, lecturers, and other continuing education
professionals to engage and empower their audiences.
</p>
<Image className="justify-center" width={400} height={400} src="/images/banner1.svg" alt="" />
</div>
<div className="clear-both">
<h1>Share Content</h1>
Expand Down
1 change: 1 addition & 0 deletions public/images/banner1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@ module.exports = {
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
fontFamily: {
'display': ['Roboto', 'sans-serif'],
},
extend: {
colors: {
'accent-primary': '#77BB3F',
'accent-secondary': '#F6EDD9',
'background-primary': '#F5FBEE',
'text-primary': '#82976D'
'accent-primary': '#72BDA3',
'accent-secondary': '#94E8B4',
'background-primary': '#F1F1F1',
},
textColor: {
'primary': '#6864b4'
}
}
},
Expand Down