├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app ├── [shortUrl] │ ├── main.tsx │ └── page.tsx ├── about │ ├── main.tsx │ └── page.tsx ├── analytics │ └── [id] │ │ ├── main.tsx │ │ └── page.tsx ├── auth │ ├── forgot-password │ │ ├── main.tsx │ │ └── page.tsx │ ├── signin │ │ ├── main.tsx │ │ └── page.tsx │ └── signup │ │ ├── main.tsx │ │ └── page.tsx ├── contact │ ├── main.tsx │ └── page.tsx ├── dashboard │ ├── main.tsx │ └── page.tsx ├── favicon.ico ├── forbidden │ ├── main.tsx │ └── page.tsx ├── globals.css ├── layout.tsx ├── not-found.tsx ├── page.tsx └── profile │ ├── main.tsx │ └── page.tsx ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg ├── robots.txt └── vercel.svg ├── src ├── ServerComponents │ ├── dashboard │ │ ├── InputUrls.tsx │ │ ├── ModalDelete.tsx │ │ ├── ModalUpdate.tsx │ │ └── ShortUrlsList.tsx │ └── profile │ │ └── ProfileUi.tsx ├── components │ ├── DropDownProfile.tsx │ ├── Footer.tsx │ ├── Navbar.tsx │ ├── Options.tsx │ ├── Sidebar.tsx │ ├── SignUpForm.tsx │ ├── Trakteer.tsx │ ├── icons │ │ ├── AddNoteIcon.tsx │ │ ├── AnalyticIcon.tsx │ │ ├── CopyDocumentIcon.tsx │ │ ├── DashboardIcon.tsx │ │ ├── DeleteDocumentIcon.tsx │ │ ├── EditDocumentIcon.tsx │ │ ├── GoogleIcon.tsx │ │ ├── ProfileUser.tsx │ │ ├── TrakteerIcon.tsx │ │ └── UserIcon.tsx │ ├── images │ │ ├── 404.webp │ │ ├── Forbidden.webp │ │ ├── Illustration.webp │ │ └── Logo.webp │ └── ui │ │ └── sidebar.tsx ├── config │ └── FirebaseConfig.ts ├── data │ └── UrlsType.ts ├── lib │ └── utils.ts └── sections │ └── Hero.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/README.md -------------------------------------------------------------------------------- /app/[shortUrl]/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/[shortUrl]/main.tsx -------------------------------------------------------------------------------- /app/[shortUrl]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/[shortUrl]/page.tsx -------------------------------------------------------------------------------- /app/about/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/about/main.tsx -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/analytics/[id]/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/analytics/[id]/main.tsx -------------------------------------------------------------------------------- /app/analytics/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/analytics/[id]/page.tsx -------------------------------------------------------------------------------- /app/auth/forgot-password/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/forgot-password/main.tsx -------------------------------------------------------------------------------- /app/auth/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/forgot-password/page.tsx -------------------------------------------------------------------------------- /app/auth/signin/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/signin/main.tsx -------------------------------------------------------------------------------- /app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /app/auth/signup/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/signup/main.tsx -------------------------------------------------------------------------------- /app/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/auth/signup/page.tsx -------------------------------------------------------------------------------- /app/contact/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/contact/main.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/dashboard/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/dashboard/main.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/forbidden/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/forbidden/main.tsx -------------------------------------------------------------------------------- /app/forbidden/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/forbidden/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/profile/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/profile/main.tsx -------------------------------------------------------------------------------- /app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/app/profile/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/ServerComponents/dashboard/InputUrls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/ServerComponents/dashboard/InputUrls.tsx -------------------------------------------------------------------------------- /src/ServerComponents/dashboard/ModalDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/ServerComponents/dashboard/ModalDelete.tsx -------------------------------------------------------------------------------- /src/ServerComponents/dashboard/ModalUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/ServerComponents/dashboard/ModalUpdate.tsx -------------------------------------------------------------------------------- /src/ServerComponents/dashboard/ShortUrlsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/ServerComponents/dashboard/ShortUrlsList.tsx -------------------------------------------------------------------------------- /src/ServerComponents/profile/ProfileUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/ServerComponents/profile/ProfileUi.tsx -------------------------------------------------------------------------------- /src/components/DropDownProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/DropDownProfile.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/Options.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/SignUpForm.tsx -------------------------------------------------------------------------------- /src/components/Trakteer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/Trakteer.tsx -------------------------------------------------------------------------------- /src/components/icons/AddNoteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/AddNoteIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/AnalyticIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/AnalyticIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CopyDocumentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/CopyDocumentIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DashboardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/DashboardIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DeleteDocumentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/DeleteDocumentIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/EditDocumentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/EditDocumentIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/GoogleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/GoogleIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ProfileUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/ProfileUser.tsx -------------------------------------------------------------------------------- /src/components/icons/TrakteerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/TrakteerIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/icons/UserIcon.tsx -------------------------------------------------------------------------------- /src/components/images/404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/images/404.webp -------------------------------------------------------------------------------- /src/components/images/Forbidden.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/images/Forbidden.webp -------------------------------------------------------------------------------- /src/components/images/Illustration.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/images/Illustration.webp -------------------------------------------------------------------------------- /src/components/images/Logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/images/Logo.webp -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/config/FirebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/config/FirebaseConfig.ts -------------------------------------------------------------------------------- /src/data/UrlsType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/data/UrlsType.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/sections/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/src/sections/Hero.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irvanshandika/ishort-urls/HEAD/tsconfig.json --------------------------------------------------------------------------------