diff --git a/README.md b/README.md index e215bc4..93abdf4 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next- ## Getting Started -First, run the development server: - ```bash npm run dev # or @@ -14,23 +12,4 @@ pnpm dev bun dev ``` -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. \ No newline at end of file diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/globals.css b/app/globals.css index a2dc41e..778d944 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,26 +1,107 @@ -@import "tailwindcss"; - :root { - --background: #ffffff; - --foreground: #171717; + + /* Background */ + --bg: #101114; + --bg-raised: #141518; + --surface: #1a1b1f; + --surface-hover: #212229; + --surface-active: #282a33; + + /* Border */ + --border: #2c2d34; + --border-strong: #3d3f48; + --border-subtle: #232429; + + /* Foreground / text */ + --fg: #e4e5e9; + --fg-secondary: #a0a3ad; + --muted: #5f6270; + --faint: #43454f; + + /* Accent */ + --accent: #8a9dff; + --accent-hover: #9dacff; + --accent-strong: #7088ff; + --accent-bg: rgba(138, 157, 255, 0.08); + --accent-bg-hover: rgba(138, 157, 255, 0.14); + + /* Semantic */ + --success: #5ec98f; + --success-bg: rgba(94, 201, 143, 0.08); + --warning: #e0a855; + --warning-bg: rgba(224, 168, 85, 0.08); + --error: #e06565; + --error-bg: rgba(224, 101, 101, 0.08); + --info: #60a5d6; + --info-bg: rgba(96, 165, 214, 0.08); + + /* Overlay / depth */ + --overlay: rgba(0, 0, 0, 0.55); + --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25); + --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.30); + --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35); + + /* Radii */ + --radius-sm: 4px; + --radius-md: 6px; + --radius-lg: 10px; + --radius-xl: 16px; + + /* Spacing */ + --space-1: 4px; + --space-2: 8px; + --space-3: 12px; + --space-4: 16px; + --space-5: 20px; + --space-6: 24px; + --space-8: 32px; + --space-10: 40px; + --space-12: 48px; + --space-16: 64px; + + /* Typography */ + --text-xs: 11px; + --text-sm: 13px; + --text-base: 15px; + --text-lg: 18px; + --text-xl: 22px; + --text-2xl: 28px; + --text-3xl: 36px; + --text-4xl: 42px; + --leading-tight: 1.2; + --leading-normal: 1.5; + --leading-relaxed: 1.7; + + /* Transitions */ + --ease-out: cubic-bezier(0.16, 1, 0.3, 1); + --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); + --duration-fast: 120ms; + --duration-normal: 200ms; + --duration-slow: 350ms; } -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + padding: 0; } body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; + background: var(--bg); + color: var(--fg); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +::selection { + background: rgba(110, 231, 183, 0.25); + color: var(--fg); +} + +@media (max-width: 640px) { + h1 { + font-size: 32px !important; + } } diff --git a/app/layout.tsx b/app/layout.tsx index 976eb90..8f2e084 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,33 +1,33 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { JetBrains_Mono, DM_Sans } from "next/font/google"; +import { SITE } from "@/data/content"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", +const mono = JetBrains_Mono({ subsets: ["latin"], + variable: "--mono", + display: "swap", }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const sans = DM_Sans({ subsets: ["latin"], + variable: "--sans", + display: "swap", }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: SITE.title, + description: SITE.description, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - {children} + + {children} ); } diff --git a/app/page.tsx b/app/page.tsx index 3f36f7c..8b4f30e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,65 +1,59 @@ -import Image from "next/image"; +"use client"; + +import { useState } from "react"; +import { PROFILE } from "@/data/content"; +import { useMountTransition } from "@/hooks/useAnimations"; +import Nav from "@/components/Nav"; +import Profile from "@/components/Profile"; +import Projects from "@/components/Projects"; +import Footer from "@/components/Footer"; export default function Home() { + const [section, setSection] = useState("profile"); + const mounted = useMountTransition(); + return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. -

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - - - Documentation - -
-
+
+
+
+
+
+ +
+ +
+ +
); } diff --git a/components/ContactMethods.tsx b/components/ContactMethods.tsx new file mode 100644 index 0000000..a603e47 --- /dev/null +++ b/components/ContactMethods.tsx @@ -0,0 +1,153 @@ +"use client"; + +import { useState } from "react"; +import type { ContactMethod } from "@/data/content"; +import { useStaggerReveal } from "@/hooks/useAnimations"; + +function ContactIcon({ type }: { type: string }) { + const s = { + width: 16, + height: 16, + strokeWidth: 1.5, + stroke: "currentColor", + fill: "none" as const, + }; + + if (type === "tel") + return ( + + + + ); + + if (type === "email") + return ( + + + + + ); + + return ( + + + + + ); +} + +function maskValue(label: string, icon: string): string { + if (icon === "tel") { + const digits = label.replace(/\D/g, ""); + return `•••-•••-${digits.slice(-4)}`; + } + return "•".repeat(Math.min(label.length, 12)); +} + +function getHref(label: string, icon: string): string { + if (icon === "tel") return `tel:${label.replace(/\D/g, "")}`; + if (icon === "email") return `mailto:${label}`; + return "#"; +} + +type Props = { + methods: ContactMethod[]; + visibleCount: number; + visibleComponent: Set; + isVisible: boolean; +}; + +export default function ContactMethods({ methods, visibleComponent, visibleCount, isVisible }: Props) { + const [revealed, setRevealed] = useState>(new Set()); + const [hovered, setHovered] = useState(null); + + return ( +
+
+ {"contact"} +
+
+ {methods.map((method, i) => { + const isRevealed = !method.masked || revealed.has(i); + const isHovered = hovered === i; + + return ( +
{ + setHovered(i); + if (method.masked) { + setRevealed((prev) => new Set(prev).add(i)); + } + }} + onMouseLeave={() => setHovered(null)} + style={{ + display: "inline-flex", + alignItems: "center", + gap: 10, + padding: "8px 14px", + fontFamily: "var(--mono)", + fontSize: "var(--text-sm)", + color: isHovered ? "var(--fg)" : "var(--fg-secondary)", + background: isHovered ? "var(--surface-hover)" : "var(--surface)", + border: `1px solid ${isHovered ? "var(--border-strong)" : "var(--border)"}`, + borderRadius: "var(--radius-md)", + transition: `all var(--duration-normal) var(--ease-in-out)`, + cursor: isRevealed ? "pointer" : "default", + alignSelf: "flex-start", + opacity: visibleComponent.has(i + visibleCount) ? 1.0 : 0.0 + }} + onClick={() => { + if (isRevealed) { + window.location.href = getHref(method.label, method.icon); + } + }} + > + + + + + + {isRevealed ? method.label : maskValue(method.label, method.icon)} + + + {method.masked && !revealed.has(i) && ( + + hover to reveal + + )} +
+ ); + })} +
+
+ ); +} diff --git a/components/Cursor.tsx b/components/Cursor.tsx new file mode 100644 index 0000000..89729dc --- /dev/null +++ b/components/Cursor.tsx @@ -0,0 +1,26 @@ +"use client"; + +import { useState, useEffect } from "react"; + +export default function Cursor() { + const [on, setOn] = useState(true); + + useEffect(() => { + const i = setInterval(() => setOn((v) => !v), 530); + return () => clearInterval(i); + }, []); + + return ( + + ); +} diff --git a/components/Footer.tsx b/components/Footer.tsx new file mode 100644 index 0000000..a8097a5 --- /dev/null +++ b/components/Footer.tsx @@ -0,0 +1,50 @@ + +import { SITE } from "@/data/content"; + +export default function Footer() { + return ( +
+
+ + (2026) - Hunter W. + +
+
+ Use this design: + + {SITE.source.label} + + +
+
+ ); +} diff --git a/components/LinkIcon.tsx b/components/LinkIcon.tsx new file mode 100644 index 0000000..9070c98 --- /dev/null +++ b/components/LinkIcon.tsx @@ -0,0 +1,63 @@ +import type { SocialLink } from "@/data/content"; + +type Props = { + type: SocialLink["icon"]; +}; + +export default function LinkIcon({ type }: Props) { + const s = { + width: 18, + height: 18, + strokeWidth: 1.5, + stroke: "currentColor", + fill: "none" as const, + }; + + if (type === "gh") + return ( + + + + ); + + if (type === "li") + return ( + + + + + + ); + + if (type === "x") + return ( + + + + ); + + if (type === "dev") + return ( + + + + DEV + + + ); + + return null; +} diff --git a/components/Nav.tsx b/components/Nav.tsx new file mode 100644 index 0000000..e192186 --- /dev/null +++ b/components/Nav.tsx @@ -0,0 +1,58 @@ +"use client"; + + +type Props = { + section: string; + setSection: (s: string) => void; +}; + +const items = ["profile", "projects"]; + +export default function Nav({ section, setSection }: Props) { + return ( + + ); +} diff --git a/components/Profile.tsx b/components/Profile.tsx new file mode 100644 index 0000000..faab64c --- /dev/null +++ b/components/Profile.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { useState } from "react"; +import { PROFILE } from "@/data/content"; +import LinkIcon from "./LinkIcon"; +import ContactMethods from "./ContactMethods"; +import { useStaggerReveal } from "@/hooks/useAnimations"; + +export default function Profile() { + const [hovered, setHovered] = useState(null); + const visible = useStaggerReveal(PROFILE.links.length + PROFILE.contactMethods.length, 100); + return ( + + ); +} diff --git a/components/ProjectCard.tsx b/components/ProjectCard.tsx new file mode 100644 index 0000000..d13ee7a --- /dev/null +++ b/components/ProjectCard.tsx @@ -0,0 +1,103 @@ +"use client"; + +import { useState } from "react"; +import type { Project } from "@/data/content"; + +type Props = { + project: Project; + visible: boolean; +}; + +export default function ProjectCard({ project, visible }: Props) { + const [hovered, setHovered] = useState(false); + + return ( + setHovered(true)} + onMouseLeave={() => setHovered(false)} + style={{ + display: "block", + textDecoration: "none", + padding: 28, + background: hovered ? "var(--surface-hover)" : "var(--surface)", + border: `1px solid ${hovered ? "var(--accent)" : "var(--border)"}`, + borderRadius: 8, + transition: "all 0.35s cubic-bezier(0.16, 1, 0.3, 1)", + transform: visible + ? hovered + ? "translateY(-3px)" + : "translateY(0)" + : "translateY(12px)", + opacity: visible ? 1 : 0, + boxShadow: hovered ? "0 8px 32px rgba(0,0,0,0.12)" : "none", + }} + > +
+
+ {project.title} +
+
+ {project.year} +
+
+

+ {project.description} +

+
+ {project.tags.map((tag) => ( + + {tag} + + ))} +
+
+ ); +} diff --git a/components/Projects.tsx b/components/Projects.tsx new file mode 100644 index 0000000..248ae00 --- /dev/null +++ b/components/Projects.tsx @@ -0,0 +1,53 @@ +"use client"; + +import { PROJECTS } from "@/data/content"; +import { useStaggerReveal } from "@/hooks/useAnimations"; +import ProjectCard from "./ProjectCard"; + +export default function Projects() { + const visible = useStaggerReveal(PROJECTS.length, 100); + + return ( +
+
+ {"# projects"} +
+

+ {"Things I've built"} +

+
+ {PROJECTS.map((project, i) => ( + + ))} +
+
+ ); +} diff --git a/data/content.ts b/data/content.ts new file mode 100644 index 0000000..ccdca9d --- /dev/null +++ b/data/content.ts @@ -0,0 +1,62 @@ +export type SocialLink = { + label: string; + url: string; + icon: "gh" | "li" | "x" | "dev"; +}; + +export type ContactMethod = { + masked: boolean, + label: string, + icon: string +} + +export type Project = { + id: number; + slug: string; + title: string; + description: string; + tags: string[]; + link: string; + year: string; +}; + + +export const PROFILE = { + name: "Hunter W", + title: "Software Engineer", + email: "contact@hwilliams.dev", + bio: "I build user experiences before I ever write code. Experience with full-stack development across a variety of frameworks and languages including JS [Vue, React, Next.JS, Nuxt, Node.JS, Express], Python [Flask, FastAPI, Gunicorn], and more.", + links: [ + { label: "GitHub", url: "https://github.com/FerrenF", icon: "gh" }, + { label: "LinkedIn", url: "https://www.linkedin.com/in/hwilliamsf/", icon: "li" } + ] satisfies SocialLink[], + contactMethods: [{ + masked: true, + label: "478-331-2258", + icon: "tel" + }, { + masked: false, + label: "contact@hwilliams.dev", + icon: "email" + } + ] satisfies ContactMethod[] +}; + +export const SITE = { + title: "Hunter W. - Software Engineer", + description: "SWE Looking for work", + source: { + label: "Git", + link: "" + } +}; + +export const PROJECTS: Project[] = [{ + id: 1, + slug: "clean-space", + title: "Clean Space", + description: "Clean Space is an architecture, proof of concept, and an in-development tool for Space Engineers and Space Engineers 2 server owners featuring client and server side .", + tags: ["C#", ".NET", "WPF", "Netcode", "Security"], + link: "https://github.com/FerrenF/CleanSpace", + year: "2025", +}]; diff --git a/hooks/useAnimations.ts b/hooks/useAnimations.ts new file mode 100644 index 0000000..8adb233 --- /dev/null +++ b/hooks/useAnimations.ts @@ -0,0 +1,33 @@ +"use client"; + +import { useState, useEffect } from "react"; + +export function useStaggerReveal(count: number, baseDelay = 80) { + const [visible, setVisible] = useState>(new Set()); + + useEffect(() => { + const timers: ReturnType[] = []; + for (let i = 0; i < count; i++) { + timers.push( + setTimeout( + () => setVisible((prev) => new Set(prev).add(i)), + baseDelay * (i + 1) + 200 + ) + ); + } + return () => timers.forEach(clearTimeout); + }, [count, baseDelay]); + + return visible; +} + +export function useMountTransition(delay = 50) { + const [mounted, setMounted] = useState(false); + + useEffect(() => { + const t = setTimeout(() => setMounted(true), delay); + return () => clearTimeout(t); + }, [delay]); + + return mounted; +} diff --git a/next.config.ts b/next.config.ts index 66e1566..0b1ec0b 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,6 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ reactCompiler: true, }; diff --git a/public/file.svg b/public/file.svg deleted file mode 100644 index 004145c..0000000 --- a/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/globe.svg b/public/globe.svg deleted file mode 100644 index 567f17b..0000000 --- a/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 7705396..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/window.svg b/public/window.svg deleted file mode 100644 index b2b2a44..0000000 --- a/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file