Switch to new fonts, darker background with gradient

This commit is contained in:
Xevion
2023-02-26 19:57:23 -06:00
parent 9210aa779a
commit e5186462f3
4 changed files with 165 additions and 137 deletions

View File

@@ -18,7 +18,7 @@ type WrapperProps = {
};
const AppWrapper: FunctionComponent<WrapperProps> = ({current, children, hideNavigation, className}: WrapperProps) => {
return <main className="min-h-screen bg-gradient-to-tl from-zinc-900 via-zinc-400/10 to-zinc-900 text-zinc-50">
return <main className={classNames("body-gradient min-h-screen text-zinc-50", className)}>
{!hideNavigation ? <Disclosure as="nav">
{({open}) => (
<>
@@ -38,14 +38,14 @@ const AppWrapper: FunctionComponent<WrapperProps> = ({current, children, hideNav
</div>
<div className="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
<div className="hidden sm:ml-6 sm:block">
<div className="flex space-x-4">
<div className="flex space-x-4 text-lg font-roboto ">
{navigation.map((item) => (
<Link
key={item.name}
href={item.href}
className={classNames(
item.id == current ? 'bg-zinc-900 text-white' : 'text-gray-300 hover:bg-zinc-800/60 hover:text-white',
'px-2.5 py-1 rounded-md text-sm font-medium text-lg'
'px-2.5 py-1 rounded-md'
)}
aria-current={item.id == current ? 'page' : undefined}
>

View File

@@ -53,8 +53,8 @@ const ItemCard = ({banner, bannerBlur, title, description, links, location, bann
<div
className="col-span-12 sm:col-span-9 lg:col-span-8 max-h-full overflow-hidden drop-shadow-2xl pb-2 md:p-1 pl-2">
<Link href={{pathname: location}}
className="text-lg sm:text-2xl md:text-3xl font-semibold">{title}</Link>
<div className="description mt-0 md:mt-1.5 text-base sm:text-xl md:text-xl overflow-hidden"
className="text-lg sm:text-2xl md:text-3xl font-semibold font-roboto">{title}</Link>
<div className="description mt-0 md:mt-1.5 text-base sm:text-xl md:text-xl font-light overflow-hidden"
onClick={(e) => {
e.stopPropagation();
navigate();

View File

@@ -6,14 +6,14 @@ import {getPlaiceholder} from "plaiceholder";
import { useBreakpointValue } from "../utils/helpers";
import type { Project } from "../utils/types";
import Link from "next/link";
import Balancer from "react-wrap-balancer";
import AppWrapper from "../components/AppWrapper";
type ProjectWithBlur = Project & { bannerBlur: string };
type HomeStaticProps = {
projects: ProjectWithBlur[];
}
};
export async function getStaticProps() {
const projects: Project[] = [
@@ -21,95 +21,107 @@ export async function getStaticProps() {
title: "Portal",
banner: "/portal/banner.jpeg",
location: "/portal",
longDescription: "An advanced membership & event management system for my university's premier computer science organization.",
shortDescription: "Advanced membership & event management system for students",
longDescription:
"An advanced membership & event management system for my university's premier computer science organization.",
shortDescription:
"Advanced membership & event management system for students",
links: [
{
icon: "github",
location: "https://github.com/UTSA-ACM/Portal"
location: "https://github.com/UTSA-ACM/Portal",
},
{
icon: "external",
location: "https://portal.acmutsa.org/"
}
]
location: "https://portal.acmutsa.org/",
},
],
},
{
title: "Phototag",
banner: "/phototag.png",
location: "/phototag",
longDescription: `Using Google's Vision API and supporting metadata formats on Windows, Phototag makes it easy to quickly add rich, descriptive tags to your photos, saving you time and effort.`,
shortDescription: "Effortlessly add rich & descriptive tags to your photos with Phototag.",
shortDescription:
"Effortlessly add rich & descriptive tags to your photos with Phototag.",
links: [
{
icon: "github",
location: "https://github.com/Xevion/phototag"
location: "https://github.com/Xevion/phototag",
},
{
icon: "external",
location: "https://phototag.xevion.dev"
}
]
location: "https://phototag.xevion.dev",
},
],
},
{
title: "Paths",
banner: "/paths.png",
location: "/paths",
shortDescription: "Discover the power of graph traversal algorithms with my interactive application.",
shortDescription:
"Discover the power of graph traversal algorithms with my interactive application.",
longDescription: `Discover the power of graph traversal algorithms with my interactive Unity application!
Easily generate and edit graphs, create mazes, and experiment with different algorithm configurations to find the most efficient path.`,
links: [
{
icon: "github",
location: "https://github.com/Xevion/Paths",
}
]
},
],
},
{
title: "Grain",
banner: "/grain/banner.jpeg",
bannerSettings: { quality: 100 },
location: "/grain",
shortDescription: "An experimental React app to generate beautiful backgrounds with noise filters.",
longDescription: "Quickly generate beautiful backgrounds with noise filters. Built with React, hosted on Vercel, and rendered using simple SVG noise filters (just HTML & CSS).",
shortDescription:
"An experimental React app to generate beautiful backgrounds with noise filters.",
longDescription:
"Quickly generate beautiful backgrounds with noise filters. Built with React, hosted on Vercel, and rendered using simple SVG noise filters (just HTML & CSS).",
links: [
{
icon: 'external',
location: "https://grain.xevion.dev"
icon: "external",
location: "https://grain.xevion.dev",
},
{
icon: "github",
location: "https://github.com/Xevion/grain"
}
]
}
location: "https://github.com/Xevion/grain",
},
],
},
];
return {
props: {
projects: await Promise.all(projects.map(async project => {
const {base64} = await getPlaiceholder(project.banner, {size: 16});
projects: await Promise.all(
projects.map(async (project) => {
const { base64 } = await getPlaiceholder(project.banner, {
size: 16,
});
return {
...project,
bannerBlur: base64
bannerBlur: base64,
};
})
),
},
};
}))
}
}
}
const buttons = [
{ text: "GitHub", href: "https://github.com/Xevion" },
{ text: "Contact", href: "/contact" },
{text: "Resume", href: "/resume"}
]
{ text: "Resume", href: "/resume" },
];
const Home: NextPage<HomeStaticProps> = ({ projects }: HomeStaticProps) => {
const useLong = useBreakpointValue("sm", true, false);
// use-tailwind-breakpoint
useEffect(() => {
typeof window !== "undefined" ? window.dispatchEvent(new Event("resize")) : null;
typeof window !== "undefined"
? window.dispatchEvent(new Event("resize"))
: null;
}, []);
return (
@@ -120,35 +132,47 @@ const Home: NextPage<HomeStaticProps> = ({projects}: HomeStaticProps) => {
<link rel="icon" href="/favicon.ico" />
</Head>
<AppWrapper hideNavigation={true} className="overflow-x-hidden">
<div className="flex justify-center items-center h-screen w-screen overflow-hidden">
<div className="top-0 p-3 absolute w-full flex justify-end">
<span
className="leading-3 bg-yellow-300 rounded-md text-black font-bold font-inter p-2">WIP</span>
</div>
<div className="w-full flex flex-col items-center h-40">
<div className="text-4xl sm:text-5xl pb-3">Hi. I&apos;m Ryan Walters.</div>
<div className="text-lg text-zinc-200">Full Stack Software Developer</div>
<div className="w-full flex justify-center py-2 space-x-2">
{buttons.map(({text, href}) =>
<Link href={href} key={href}>
<div className="p-2 rounded-sm bg-zinc-900 hover:bg-zinc-800">
<div className="flex h-screen w-screen items-center justify-center overflow-hidden">
<div className="flex w-full flex-col items-center justify-start">
<nav className="animate-fade-in">
<ul className="flex items-center justify-center gap-4">
{buttons.map(({ text, href }) => (
<Link
key={href}
className="text-sm text-zinc-500 duration-500 hover:text-zinc-300"
href={href}
>
{text}
</div>
</Link>
)}
))}
</ul>
</nav>
<div className="cursor-default select-none py-10 font-hanken text-4xl font-black tracking-widest sm:text-9xl">
XEVION
</div>
<div className="text-sm text-zinc-500 text-center">
<Balancer>
Building software at <Link href="">Black Pearl Technology</Link> during my undergrad. <br/>
Always open to new opportunities.
</Balancer>
</div>
</div>
</div>
<div id="projects"
className="flex py-12 sm:py-8 min-h-screen flex-row md:items-center justify-center">
<div className="h-full w-full max-w-[95%] lg:max-w-[85%] xl:max-w-[70%] mx-auto">
<div className="flex h-full m-1 flex-col justify-start gap-y-1">
{
projects.map((project, index) =>
<ItemCard key={index} {...project}
description={useLong ? project.longDescription : project.shortDescription}/>
)
<div
id="projects"
className="flex min-h-screen flex-row justify-center py-12 sm:py-8 md:items-center"
>
<div className="mx-auto h-full w-full max-w-[95%] lg:max-w-[85%] xl:max-w-[70%]">
<div className="m-1 flex h-full flex-col justify-start gap-y-1">
{projects.map((project, index) => (
<ItemCard
key={index}
{...project}
description={
useLong ? project.longDescription : project.shortDescription
}
/>
))}
</div>
</div>
</div>

View File

@@ -8,6 +8,10 @@
@tailwind components;
@tailwind utilities;
.body-gradient {
background-image: linear-gradient(to top left, black, rgb(161 161 170 / 0.1), black);
}
@mixin active {
.elements {
@apply grid opacity-100;