aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
diff options
context:
space:
mode:
authorAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-10-09 17:32:25 +0100
committerAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-10-09 17:32:25 +0100
commit72cf36e033ba794db7982befa45f035b62fa6cd2 (patch)
tree3a6fd91976c976afcc8bc1a7cf6fc5c1bf25a791 /src/pages/index.tsx
parent66412b7788f49def33fc2143f9e1bd5d25bac261 (diff)
Changes
Diffstat (limited to 'src/pages/index.tsx')
-rw-r--r--src/pages/index.tsx41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
deleted file mode 100644
index 0a21d32..0000000
--- a/src/pages/index.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import Link from "next/link"
-import Image from "next/image"
-
-export default function Home() {
- return (
- <div className="bg-black w-screen h-screen flex flex-col items-center justify-center">
- <h1>Netflix</h1>
- <p className="text-white text-[3.5vw]">Who's watching?</p>
- <div className="flex flex-row gap-3 mt-6">
- {
- USERS.map((user, index) => (
- <div key={index} className="flex flex-col items-center justify-center">
- <Link href={user.link} className="w-[128px] h-[128px] rounded-xl overflow-hidden bg-white">
- <Image src={user.avatar} width={128} height={128} alt=""/>
- </Link>
- <p className="text-gray-400 text-xs">{user.name}</p>
- </div>
- ))}
- </div>
- </div>
- )
-}
-
-const USERS = [
- {
- name:'Alberto',
- link:'/browse',
- avatar:'https://avatars.dicebear.com/api/male/124.svg'
- },
- {
- name:'Kids',
- link:'/',
- avatar:'https://avatars.dicebear.com/api/male/122.svg'
- },
- {
- name:'Add profile',
- link:'/',
- avatar:'https://avatars.dicebear.com/api/female/12.svg'
- // icon:'...'
- }
-] \ No newline at end of file