-
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
14 changed files
with
157 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.hero { | ||
margin-top: 100; | ||
margin-bottom: 100; | ||
} |
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,7 @@ | ||
import React from "react"; | ||
|
||
export function LandingPage() { | ||
return ( | ||
|
||
); | ||
} |
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
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,4 +1,5 @@ | ||
export default function App({ Component, pageProps }) { | ||
return <Component {...pageProps} /> | ||
import "../style.css"; | ||
|
||
export default function App({ Component, pageProps }) { | ||
return <Component {...pageProps} />; | ||
} |
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 +1,30 @@ | ||
# Nalanda | ||
import Image from "next/image"; | ||
|
||
<div className="min-h-[80vh] flex flex-col justify-center"> | ||
<div className="mx-auto space-y-8"> | ||
|
||
<div className="flex justify-center"> | ||
<Image | ||
src="/nalanda.png" | ||
alt="Nalanda Logo" | ||
className="border-4 border-orange-300 rounded-full z-10" | ||
width={170} | ||
height={170} | ||
/> | ||
</div> | ||
<div> | ||
|
||
<div className="text-6xl font-black text-center leading-tight"> | ||
<span className="font-black inline-block text-transparent bg-clip-text bg-gradient-to-b dark:from-orange-600 dark:to-yellow-200 from-orange-500 to-yellow-500 animate-gradientAnimation"> | ||
Nalanda | ||
</span> | ||
</div> | ||
|
||
<div className="text-2xl font-medium text-center text-gray-600 break-words"> | ||
State Management | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> |
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: {}, | ||
}, | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 +1,18 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@keyframes gradientAnimation { | ||
0%, | ||
100% { | ||
background-position: 100% 0%; | ||
} | ||
50% { | ||
background-position: 0% 100%; | ||
} | ||
} | ||
|
||
.animate-gradientAnimation { | ||
background-size: 200% 200%; | ||
animation: gradientAnimation 6s infinite; | ||
} |
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
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,48 @@ | ||
{ | ||
name: 'nalanda-workspace', | ||
version: '0.0.0', | ||
description: '', | ||
authors: [ | ||
{ | ||
name: 'Kushan Joshi', | ||
email: '[email protected]', | ||
web: 'http://github.com/kepta', | ||
}, | ||
], | ||
repository: { | ||
type: 'git', | ||
url: 'https://github.com/bangle-io/nalanda.git', | ||
}, | ||
bugs: { | ||
url: 'https://github.com/bangle-io/nalanda/issues', | ||
}, | ||
scripts: { | ||
'codesandbox:install': 'corepack enable && pnpm install --frozen-lockfile', | ||
'build': 'pnpm -r run build', | ||
'lint': 'pnpm -r run lint', | ||
'lint-packages': 'pnpm -r --filter "./packages/**" run lint', | ||
'test': 'pnpm -r run test', | ||
// hi | ||
'test:watch': 'pnpm -r run test:watch', | ||
'build-docs': 'pnpm -r --filter documentation build', | ||
'build-docs:watch': 'pnpm -r --filter documentation preview', | ||
'build-packages': 'pnpm -r --filter "./packages/**" build', | ||
'build-packages:watch': 'pnpm -r --filter "./packages/**" build:watch', | ||
'publish-alpha': 'pnpm -r --filter "./packages/**" publish --tag alpha --otp ${npm_config_otp} --access public', | ||
'publish-latest': 'pnpm -r --filter "./packages/**" publish --tag latest --otp ${npm_config_otp} --access public', | ||
}, | ||
keywords: [], | ||
license: 'MIT', | ||
dependencies: { | ||
prettier: '^3.0.3', | ||
tsconfig: 'workspace:*', | ||
typescript: '^5.2.2', | ||
}, | ||
prettier: { | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
quoteProps: 'consistent', | ||
arrowParens: 'always', | ||
printWidth: 80, | ||
}, | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.