├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── jsconfig.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── dev.db ├── migrations │ ├── 20241016130615_ │ │ └── migration.sql │ └── migration_lock.toml ├── schema.prisma └── seed.js ├── public ├── category │ ├── arcade.jpg │ ├── atari.jpg │ ├── mame.jpg │ ├── n64.jpg │ ├── placeholder.jpg │ ├── playstation.jpg │ ├── sega.jpg │ └── super-nintendo.jpg ├── game │ ├── asterix-and-the-great-rescue.jpg │ ├── automobili-lamborghini.jpg │ ├── biaofeng-zhanjing.jpg │ ├── cadillacs-and-dinosaurs.jpg │ ├── captain-commando.jpg │ ├── centre-court-tennis.JPG │ ├── disney-s-hercules.jpg │ ├── placeholder.jpg │ ├── rayman-2-the-great-escape.jpg │ ├── street-fighter-ii.jpg │ ├── super-mario-64.jpg │ ├── teenage-mutant-hero-turtles.jpg │ └── x-men-children-of-the-atom.JPG ├── icons │ ├── arcade.svg │ ├── default.svg │ └── favicon.ico ├── logo.svg ├── page │ └── not-found.jpg └── slide │ └── slide-1.png ├── src ├── app │ ├── (admin) │ │ ├── dashboard │ │ │ ├── game │ │ │ │ ├── (form) │ │ │ │ │ ├── actions.js │ │ │ │ │ └── form.jsx │ │ │ │ ├── [slug] │ │ │ │ │ └── page.jsx │ │ │ │ └── add │ │ │ │ │ └── page.jsx │ │ │ └── page.jsx │ │ ├── layout.jsx │ │ ├── login │ │ │ └── page.jsx │ │ └── register │ │ │ └── page.jsx │ ├── (main) │ │ ├── category │ │ │ ├── [slug] │ │ │ │ └── page.jsx │ │ │ └── page.jsx │ │ ├── game │ │ │ └── [slug] │ │ │ │ ├── page-server-example.jsx │ │ │ │ └── page.jsx │ │ ├── layout.js │ │ ├── page.js │ │ ├── search │ │ │ └── page.jsx │ │ └── test │ │ │ └── page.jsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.js │ ├── auth.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── not-found.jsx │ └── sitemap.js ├── components │ ├── Admin │ │ └── Header.jsx │ ├── Disqus.jsx │ ├── Footer.jsx │ ├── GameCategory.jsx │ ├── GameEmulator.jsx │ ├── Header.jsx │ ├── MobileNav.jsx │ ├── Search.jsx │ ├── SideBar.jsx │ ├── SideBarNav.jsx │ └── Sliders │ │ ├── CategorySlider.jsx │ │ └── HeroSlider.jsx ├── lib │ ├── adminQueries.js │ ├── gameQueries.js │ └── prisma.ts └── middleware.js └── tailwind.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/prisma/dev.db -------------------------------------------------------------------------------- /prisma/migrations/20241016130615_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/prisma/migrations/20241016130615_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/prisma/seed.js -------------------------------------------------------------------------------- /public/category/arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/arcade.jpg -------------------------------------------------------------------------------- /public/category/atari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/atari.jpg -------------------------------------------------------------------------------- /public/category/mame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/mame.jpg -------------------------------------------------------------------------------- /public/category/n64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/n64.jpg -------------------------------------------------------------------------------- /public/category/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/placeholder.jpg -------------------------------------------------------------------------------- /public/category/playstation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/playstation.jpg -------------------------------------------------------------------------------- /public/category/sega.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/sega.jpg -------------------------------------------------------------------------------- /public/category/super-nintendo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/category/super-nintendo.jpg -------------------------------------------------------------------------------- /public/game/asterix-and-the-great-rescue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/asterix-and-the-great-rescue.jpg -------------------------------------------------------------------------------- /public/game/automobili-lamborghini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/automobili-lamborghini.jpg -------------------------------------------------------------------------------- /public/game/biaofeng-zhanjing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/biaofeng-zhanjing.jpg -------------------------------------------------------------------------------- /public/game/cadillacs-and-dinosaurs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/cadillacs-and-dinosaurs.jpg -------------------------------------------------------------------------------- /public/game/captain-commando.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/captain-commando.jpg -------------------------------------------------------------------------------- /public/game/centre-court-tennis.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/centre-court-tennis.JPG -------------------------------------------------------------------------------- /public/game/disney-s-hercules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/disney-s-hercules.jpg -------------------------------------------------------------------------------- /public/game/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/placeholder.jpg -------------------------------------------------------------------------------- /public/game/rayman-2-the-great-escape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/rayman-2-the-great-escape.jpg -------------------------------------------------------------------------------- /public/game/street-fighter-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/street-fighter-ii.jpg -------------------------------------------------------------------------------- /public/game/super-mario-64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/super-mario-64.jpg -------------------------------------------------------------------------------- /public/game/teenage-mutant-hero-turtles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/teenage-mutant-hero-turtles.jpg -------------------------------------------------------------------------------- /public/game/x-men-children-of-the-atom.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/game/x-men-children-of-the-atom.JPG -------------------------------------------------------------------------------- /public/icons/arcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/icons/arcade.svg -------------------------------------------------------------------------------- /public/icons/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/icons/default.svg -------------------------------------------------------------------------------- /public/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/icons/favicon.ico -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/page/not-found.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/page/not-found.jpg -------------------------------------------------------------------------------- /public/slide/slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/public/slide/slide-1.png -------------------------------------------------------------------------------- /src/app/(admin)/dashboard/game/(form)/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/dashboard/game/(form)/actions.js -------------------------------------------------------------------------------- /src/app/(admin)/dashboard/game/(form)/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/dashboard/game/(form)/form.jsx -------------------------------------------------------------------------------- /src/app/(admin)/dashboard/game/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/dashboard/game/[slug]/page.jsx -------------------------------------------------------------------------------- /src/app/(admin)/dashboard/game/add/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/dashboard/game/add/page.jsx -------------------------------------------------------------------------------- /src/app/(admin)/dashboard/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/dashboard/page.jsx -------------------------------------------------------------------------------- /src/app/(admin)/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/layout.jsx -------------------------------------------------------------------------------- /src/app/(admin)/login/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/login/page.jsx -------------------------------------------------------------------------------- /src/app/(admin)/register/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(admin)/register/page.jsx -------------------------------------------------------------------------------- /src/app/(main)/category/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/category/[slug]/page.jsx -------------------------------------------------------------------------------- /src/app/(main)/category/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/category/page.jsx -------------------------------------------------------------------------------- /src/app/(main)/game/[slug]/page-server-example.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/game/[slug]/page-server-example.jsx -------------------------------------------------------------------------------- /src/app/(main)/game/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/game/[slug]/page.jsx -------------------------------------------------------------------------------- /src/app/(main)/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/layout.js -------------------------------------------------------------------------------- /src/app/(main)/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/page.js -------------------------------------------------------------------------------- /src/app/(main)/search/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/search/page.jsx -------------------------------------------------------------------------------- /src/app/(main)/test/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/(main)/test/page.jsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/api/auth/[...nextauth]/route.js -------------------------------------------------------------------------------- /src/app/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/auth.js -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/layout.js -------------------------------------------------------------------------------- /src/app/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/not-found.jsx -------------------------------------------------------------------------------- /src/app/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/app/sitemap.js -------------------------------------------------------------------------------- /src/components/Admin/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Admin/Header.jsx -------------------------------------------------------------------------------- /src/components/Disqus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Disqus.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/GameCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/GameCategory.jsx -------------------------------------------------------------------------------- /src/components/GameEmulator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/GameEmulator.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/MobileNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/MobileNav.jsx -------------------------------------------------------------------------------- /src/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Search.jsx -------------------------------------------------------------------------------- /src/components/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/SideBar.jsx -------------------------------------------------------------------------------- /src/components/SideBarNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/SideBarNav.jsx -------------------------------------------------------------------------------- /src/components/Sliders/CategorySlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Sliders/CategorySlider.jsx -------------------------------------------------------------------------------- /src/components/Sliders/HeroSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/components/Sliders/HeroSlider.jsx -------------------------------------------------------------------------------- /src/lib/adminQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/lib/adminQueries.js -------------------------------------------------------------------------------- /src/lib/gameQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/lib/gameQueries.js -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/src/middleware.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/55_NextRivals-NextJs-Retro-Arcade-Website/HEAD/tailwind.config.js --------------------------------------------------------------------------------