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
8 changes: 8 additions & 0 deletions .env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
MONGODB_URI = mongodb+srv://fgirse:[email protected]/?retryWrites=true&w=majority

GOOGLE_ID = 591541867944-raku5v1fq1nldlrmualpj8djfg1hdgkd.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET = 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

NEXTAUTH-URL = http://localhost:3000
NEXTAUTH_URL_INTERN = http://localhost:3000
NEXAUTH_SECRET = By6zfOQzeRCaVCagqKa8xBOGd9sxYBg3EqUbJM47RBY=
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"githubPullRequests.ignoredPullRequestBranches": [
"main"
]
}
20 changes: 14 additions & 6 deletions app/page.jsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
import Feed from "@components/Feed";
import Team from "@sections/Team";

const Home = () => (
<section className='w-full flex-center flex-col'>
<>
<section className='bg-[url("/assets/images/andalusiaRedRoofs.jpg")]
bg-cover bg-no-repeat
w-full h-[calc(100vh - 30px)] flex-center flex-col'>
<h1 className='head_text text-center'>
Discover & Share
Wohntraum
<br className='max-md:hidden' />
<span className='orange_gradient text-center'> AI-Powered Prompts</span>
<span className='orange_gradient text-center'> Andalusien</span>
</h1>
<p className='desc text-center'>
Promptopia is an open-source AI prompting tool for modern world to
discover, create and share creative prompts

</p>

<Feed />

</section>

<Feed />
<Team />

</>
);

export default Home;
8 changes: 4 additions & 4 deletions components/Nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ const Nav = () => {
<nav className='flex-between w-full mb-16 pt-3'>
<Link href='/' className='flex gap-2 flex-center'>
<Image
src='/assets/images/logo.svg'
src='/assets/images/logoWohngefuehl.png'
alt='logo'
width={30}
height={30}
width={200}
height={100}
className='object-contain'
/>
<p className='logo_text'>Promptopia</p>
<p className='logo_text'>Sutter GmbH</p>
</Link>

{/* Desktop Navigation */}
Expand Down
Loading