From 8529a2e3a131392a3819500e7e24aba9ba911038 Mon Sep 17 00:00:00 2001 From: Aidan Date: Sun, 23 Feb 2025 13:52:25 -0500 Subject: [PATCH] style/fix: fix header for mobile, add phone page and links, update footer style, update readme, replace tilde with blog --- README.md | 2 + app/phone/page.tsx | 250 +++++++++++++++++++++++++++++++++++++ components/Footer.tsx | 26 ++-- components/Header.tsx | 13 +- components/pages/About.tsx | 9 ++ package.json | 1 + public/img/cheetah.png | Bin 0 -> 492294 bytes 7 files changed, 285 insertions(+), 16 deletions(-) create mode 100644 app/phone/page.tsx create mode 100644 public/img/cheetah.png diff --git a/README.md b/README.md index 82161eb..d172d11 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ It's built with Next.js and Tailwind CSS. aidxnCC will always be a work in progr To deploy with Vercel, simply click the button above. When prompted for environment variables, see the section below. +**Own a server? Deploy on your own!** F*** Vercel, check out [Coolify](https://coolify.io/), a free and open-source alternative to Vercel. + ## Contributing Any and all contributions are welcome! Simply create a pull request and I should have a response to you within a day. diff --git a/app/phone/page.tsx b/app/phone/page.tsx new file mode 100644 index 0000000..fd8d809 --- /dev/null +++ b/app/phone/page.tsx @@ -0,0 +1,250 @@ +import Header from "@/components/Header" +import Footer from "@/components/Footer" +import { Smartphone, Cpu, MemoryStick, HardDrive, Hash, Hammer, Music, Folder, Layers, SquarePen } from "lucide-react" +import { FaGoogle, FaYoutube } from "react-icons/fa" +import { VscTerminalLinux } from "react-icons/vsc" +import { MdOutlineAndroid } from "react-icons/md" +import { LuPackageOpen } from "react-icons/lu" +import { RiTelegram2Fill } from "react-icons/ri" +import Image from "next/image" +import Link from "next/link" +import { FaStarHalfStroke, FaStar } from "react-icons/fa6" + +export default function About() { + return ( +
+
+
+
+
+ +
+

+ My Phone +

+
+
+
+
+ Google Pixel 7 Pro (cheetah) +
+
+
+

+ + Pixel 7 Pro +

+

cheetah

+
+

+ + Specifications +

+

+ + CPU: Google Tensor G2 +

+

+ + Storage: 128GB +

+

+ + RAM: 12GB +

+
+

+ + Modifications +

+

+ + Kernel: + + android13-5.10.WILD + +

+

+ + ROM: + + AxionAOSP v1.1 + +

+

+ + Root: + + KernelSU-Next + +

+
+
+

+ + Apps +

+

+ + Music: + + Qobuz + +

+

+ + Files: + + MiXplorer Beta + +

+

+ + Telegram: + + Cherrygram + +

+

+ + YouTube: + + ReVanced Extended + +

+
+

+ + Modules +

+
    +
  • + + Play Integrity Fix + +
  • +
  • + + Tricky Store + +
  • +
  • + + Shamiko + +
  • +
  • + + LSPosed_mod + +
  • +
  • + + Zygisk Next + +
  • +
  • + + SUSFS for KernelSU + +
  • +
+
+
+

+ + Review +

+

+ Rating: + {" "} + +

+

+ I have really enjoyed using this phone in my daily life, and it has been the perfect companion, in + comparison to my previous phone. +

+
+
+
+
+
+
+
+ ) +} + diff --git a/components/Footer.tsx b/components/Footer.tsx index 0adb183..e9ab2fc 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,13 +1,25 @@ -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faHeart } from '@fortawesome/free-solid-svg-icons'; +import { TbCopyrightOff } from "react-icons/tb" +import { RxDividerVertical } from "react-icons/rx" +import { SiNextdotjs } from "react-icons/si" +import Link from 'next/link' export default function Footer() { return ( -