Skip to content

Commit

Permalink
Merge pull request #2 from rickycraft/web-fixed
Browse files Browse the repository at this point in the history
Remove T3 references and add github image
  • Loading branch information
rickycraft authored Jun 9, 2024
2 parents db982e4 + 8b4c1de commit 8bd0cfd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"drizzle-orm": "^0.30.10",
"lucide-react": "^0.373.0",
"next": "^14.2.1",
"next-auth": "^4.24.6",
"next-auth": "^4.24.7",
"pg": "^8.11.5",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion web/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added web/public/githublogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/public/logoGitHub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 14 additions & 12 deletions web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
import Link from "next/link"
'use client';
import Link from 'next/link';
import React from 'react';
import { signIn } from 'next-auth/react';

export default function HomePage() {
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16 ">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16">
<h1 className="text-5xl font-extrabold tracking-tight text-white sm:text-[5rem]">
Create <span className="text-[hsl(280,100%,70%)]">T3</span> App
<span className="text-[hsl(280,100%,70%)]">SHODAN Monitoring</span> WebApp
</h1>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:gap-8">
<Link
<button
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/usage/first-steps"
target="_blank"
onClick={() => signIn('github')}
>
<h3 className="text-2xl font-bold">First Steps</h3>
<h3 className="text-2xl font-bold">Login</h3>
<div className="text-lg">
Progetto SRS
OAuth di GitHub
<img src="/logoGitHub.png" alt="GitHub OAuth Login" />
</div>
</Link>
</button>
<Link
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/introduction"
target="_blank"
>
<h3 className="text-2xl font-bold">Documentation</h3>
<h3 className="text-2xl font-bold">Repo Github </h3>
<div className="text-lg">
Learn more about Create T3 App, the libraries it uses, and how to
deploy it.
Repository GitHub del Progetto di Scalable and Reliable Services M
</div>
</Link>
</div>
Expand Down

0 comments on commit 8bd0cfd

Please sign in to comment.