Skip to content

Commit

Permalink
added ide png
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkit-30 committed Sep 29, 2024
1 parent ef386c5 commit 1a8cbea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Binary file added public/assets/ide-ss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions src/components/pages/home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Image from 'next/image';
import { getServerSession } from 'next-auth';

import { authOptions } from '@/app/api/auth/[...nextauth]/auth-options';
Expand All @@ -14,7 +15,7 @@ const HomePage = async () => {
const session = await getServerSession(authOptions);
return (
<section
className="flex size-full flex-col items-center justify-between p-10"
className="flex size-full flex-col items-center justify-between gap-20 p-10"
data-testid="home-page"
>
<div>
Expand All @@ -28,7 +29,15 @@ const HomePage = async () => {
<Auth />
</div>
</div>
<div className="mt-36 flex flex-col items-center justify-between gap-5">
<div className="mt-20 overflow-hidden rounded-md border shadow-2xl shadow-gray-900">
<Image
alt="here-image"
src="/assets/ide-ss.png"
height="900"
width="1000"
/>
</div>
<div className="flex flex-col items-center justify-between gap-5">
<div className="mx-auto flex flex-wrap items-center justify-center gap-10 text-gray-500 grayscale">
<Tooltip delayDuration={0}>
<TooltipTrigger>
Expand Down

0 comments on commit 1a8cbea

Please sign in to comment.