Skip to content

Commit 65a180a

Browse files
author
Shane Williams
committed
New first draft
1 parent e4bed20 commit 65a180a

40 files changed

+661
-392
lines changed

.env.example

-14
This file was deleted.

jsconfig.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
}
6+
}
7+
}

package-lock.json

+401-266
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "shawilly.dev",
2+
"name": "chantalwilliams",
33
"version": "0.1.0",
44
"private": true,
55
"type": "module",
@@ -15,16 +15,20 @@
1515
"start": "next start"
1616
},
1717
"dependencies": {
18+
"@heroicons/react": "^2.1.5",
1819
"@prisma/client": "^5.14.0",
1920
"@t3-oss/env-nextjs": "^0.10.1",
2021
"@tanstack/react-query": "^5.39.0",
2122
"@trpc/client": "next",
2223
"@trpc/react-query": "next",
2324
"@trpc/server": "next",
25+
"framer-motion": "^11.3.2",
2426
"geist": "^1.3.0",
2527
"next": "^14.2.1",
2628
"react": "^18.3.0",
2729
"react-dom": "^18.3.0",
30+
"react-icons": "^5.2.1",
31+
"react-type-animation": "^3.2.0",
2832
"server-only": "^0.0.1",
2933
"superjson": "^2.2.1",
3034
"zod": "^3.23.3"

public/Email200.png

40.9 KB
Loading

public/Instagram200.png

57 KB
Loading

public/LinkedIn200.png

51.2 KB
Loading

public/YouTube200.png

44.4 KB
Loading

public/favicon.ico

-8 KB
Binary file not shown.

public/github-icon.svg

+1
Loading

public/images/about-image.png

954 KB
Loading

public/images/dancer.png

15.8 MB
Loading

public/images/hero-image.png

738 KB
Loading

public/images/projects/1.png

430 KB
Loading

public/images/projects/2.png

584 KB
Loading

public/images/projects/3.png

374 KB
Loading

public/images/projects/4.png

269 KB
Loading

public/images/projects/5.png

594 KB
Loading

public/images/projects/6.png

1.33 MB
Loading

public/images/smoker.jpeg

7.78 MB
Loading

public/linkedin-icon.svg

+1
Loading

public/next.svg

+1
Loading

public/vercel.svg

+1
Loading

src/app/_components/create-post.tsx

-43
This file was deleted.

src/app/_components/footer.tsx

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { PicNic } from "@/fonts";
2+
import Link from "next/link";
3+
import { VscGithub } from "react-icons/vsc";
4+
5+
const Footer = (): JSX.Element => {
6+
return (
7+
<footer className="footer z-10 border border-l-transparent border-r-transparent border-t-[#33353F] text-slate-600">
8+
<div className="container flex items-center justify-between gap-4 p-12">
9+
<div className="flex items-center gap-4">
10+
<Link
11+
href="https://shawilly.dev"
12+
className="flex transform items-center transition-transform hover:scale-110 hover:text-pgreen"
13+
target="_blank"
14+
>
15+
<p className="mr-1">
16+
crafted by{" "}
17+
<span className={`${PicNic.className} mr-1 text-2xl`}>
18+
shawilly
19+
</span>
20+
</p>
21+
<VscGithub className="md-block hidden" size="1rem" />
22+
</Link>
23+
</div>
24+
Copyright © All rights reserved.
25+
</div>
26+
</footer>
27+
);
28+
};
29+
30+
export default Footer;

src/app/_components/intro-typed.tsx

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"use client";
2+
import { TypeAnimation } from "react-type-animation";
3+
4+
export const IntroTyped = (): JSX.Element => {
5+
return (
6+
<TypeAnimation
7+
sequence={[
8+
"Chantal Williams is an animator specializing in 2D animation with over 5 years of experience, focusing on various styles and team training.",
9+
]}
10+
wrapper="span"
11+
cursor={true}
12+
/>
13+
);
14+
};

src/app/_components/logo.tsx

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
"use client";
2+
import { kablammo } from "@/fonts";
3+
import { motion } from "framer-motion";
4+
import { useRef } from "react";
5+
6+
const Logo = (): JSX.Element => {
7+
const constraintsRef = useRef(null);
8+
9+
return (
10+
<>
11+
<motion.div className="drag-area" ref={constraintsRef} />
12+
<motion.div
13+
drag
14+
dragConstraints={constraintsRef}
15+
className={`${kablammo.className} w-max-full h-max-[200px] z-50 flex flex-col items-start justify-start text-start font-black leading-[60px] transition-transform [font-size:_clamp(2.5em,5vw,4rem)]`}
16+
>
17+
Chantal
18+
<br />
19+
Williams
20+
</motion.div>
21+
</>
22+
);
23+
};
24+
25+
export default Logo;

src/app/_components/navbar.tsx

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import { rubik300, rubik500 } from "@/fonts";
2+
import Link from "next/link";
3+
import { IntroTyped } from "./intro-typed";
4+
import Logo from "./logo";
5+
import Socials from "./socials";
6+
7+
const Navbar = (): JSX.Element => {
8+
return (
9+
<div
10+
className={`${rubik500.className} fixed left-0 top-0 float-left mr-[2%] grid h-full max-w-[500px] grid-rows-5 overflow-auto py-[4%] pl-[5%] pr-[3%]`}
11+
>
12+
<Logo />
13+
<div className="pb-[60px] pr-[40px]">
14+
<span className={`${rubik300.className} text-md my-12`}>
15+
<IntroTyped />
16+
</span>
17+
<div className="mt-12 flex flex-grow flex-col items-start gap-8 pb-[60px] text-xl text-slate-700">
18+
<Link
19+
href="/"
20+
className="transform transition-transform hover:scale-110 hover:text-porange"
21+
>
22+
Home
23+
</Link>
24+
<Link
25+
href="/animation"
26+
className="transform transition-transform hover:scale-110 hover:text-pyellow"
27+
>
28+
Animation
29+
</Link>
30+
<Link
31+
href="/personal-work"
32+
className="transform transition-transform hover:scale-110 hover:text-ppurple"
33+
>
34+
Personal Work
35+
</Link>
36+
<Link
37+
href="/about"
38+
className="transform transition-transform hover:scale-110 hover:text-pgreen"
39+
>
40+
Contact
41+
</Link>
42+
</div>
43+
<Socials />
44+
</div>
45+
</div>
46+
);
47+
};
48+
49+
export default Navbar;

src/app/_components/socials.tsx

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
import Link from "next/link";
2+
import { FaLinkedin, FaTwitch } from "react-icons/fa";
3+
import { TiSocialInstagram } from "react-icons/ti";
4+
5+
export enum SOCIALS {
6+
TWITCH = "https://www.twitch.tv/chantooladreams",
7+
INSTAGRAM = "https://www.instagram.com/chantooladreams/",
8+
CARA_APP = "https://cara.app/chantooladreams",
9+
LINKEDIN = "https://ie.linkedin.com/in/chantoola-williams",
10+
}
11+
12+
export const SocialIcons = {
13+
[SOCIALS.CARA_APP]: () => (
14+
<span className="text-2xl font-bold">
15+
{" "}
16+
<span className="underline">C</span>ara{" "}
17+
</span>
18+
),
19+
[SOCIALS.LINKEDIN]: () => <FaLinkedin size="2rem" />,
20+
[SOCIALS.TWITCH]: () => <FaTwitch size="2rem" />,
21+
[SOCIALS.INSTAGRAM]: () => <TiSocialInstagram size="2rem" />,
22+
} as const;
23+
24+
const Socials = (): JSX.Element => {
25+
return (
26+
<div className="flex flex-row justify-start gap-9">
27+
{Object.values(SOCIALS).map((social: SOCIALS) => (
28+
<Link
29+
key={social}
30+
href={social}
31+
className="transform transition-transform hover:scale-110 hover:text-pblue300"
32+
target="_blank"
33+
>
34+
{SocialIcons[social]()}
35+
</Link>
36+
))}
37+
</div>
38+
);
39+
};
40+
41+
export default Socials;

src/app/favicon.ico

25.3 KB
Binary file not shown.

src/app/globals.css

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
:root {
6+
--foreground-rgb: 0, 0, 0;
7+
--background-start-rgb: 214, 219, 220;
8+
--background-end-rgb: 255, 255, 255;
9+
}
10+
11+
@media (prefers-color-scheme: dark) {
12+
:root {
13+
--foreground-rgb: 255, 255, 255;
14+
--background-start-rgb: 0, 0, 0;
15+
--background-end-rgb: 0, 0, 0;
16+
}
17+
}
18+
19+
body {
20+
color: rgb(var(--foreground-rgb));
21+
background: linear-gradient(
22+
to bottom,
23+
transparent,
24+
rgb(var(--background-end-rgb))
25+
)
26+
rgb(var(--background-start-rgb));
27+
}

src/app/layout.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import "@/styles/globals.css";
2-
3-
import { GeistSans } from "geist/font/sans";
4-
52
import { TRPCReactProvider } from "@/trpc/react";
3+
import { GeistSans } from "geist/font/sans";
64

75
export const metadata = {
8-
title: "Create T3 App",
9-
description: "Generated by create-t3-app",
6+
title: "Chantal Williams",
7+
description: "animator",
108
icons: [{ rel: "icon", url: "/favicon.ico" }],
119
};
1210

src/app/page.tsx

+11-56
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,20 @@
1-
import Link from "next/link";
2-
3-
import { CreatePost } from "@/app/_components/create-post";
4-
import { api } from "@/trpc/server";
1+
import Footer from "./_components/footer";
2+
import NavBar from "./_components/navbar";
53

64
export default async function Home() {
7-
const hello = await api.post.hello({ text: "from tRPC" });
8-
95
return (
10-
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white">
11-
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16 ">
12-
<h1 className="text-5xl font-extrabold tracking-tight sm:text-[5rem]">
13-
Create <span className="text-[hsl(280,100%,70%)]">T3</span> App
14-
</h1>
15-
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:gap-8">
16-
<Link
17-
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 hover:bg-white/20"
18-
href="https://create.t3.gg/en/usage/first-steps"
19-
target="_blank"
20-
>
21-
<h3 className="text-2xl font-bold">First Steps →</h3>
22-
<div className="text-lg">
23-
Just the basics - Everything you need to know to set up your
24-
database and authentication.
25-
</div>
26-
</Link>
27-
<Link
28-
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 hover:bg-white/20"
29-
href="https://create.t3.gg/en/introduction"
30-
target="_blank"
31-
>
32-
<h3 className="text-2xl font-bold">Documentation →</h3>
33-
<div className="text-lg">
34-
Learn more about Create T3 App, the libraries it uses, and how to
35-
deploy it.
36-
</div>
37-
</Link>
6+
<main className="min-w-screen grid min-h-screen grid-rows-8 items-center justify-center bg-gray-50 text-poff_black">
7+
<div className="row-span-7 grid w-screen grid-flow-row-dense grid-cols-5 xl:grid-cols-3 2xl:grid-cols-8">
8+
<div className="w-max-[500px] col-span-2 hidden lg:block xl:col-span-1 2xl:col-span-2">
9+
<NavBar />
3810
</div>
39-
<div className="flex flex-col items-center gap-2">
40-
<p className="text-2xl text-white">
41-
{hello ? hello.greeting : "Loading tRPC query..."}
42-
</p>
11+
<div className="col-span-5 h-[100%] w-[100%] bg-red-200 lg:col-span-3 xl:col-span-2 2xl:col-span-6">
12+
hello
4313
</div>
44-
45-
<CrudShowcase />
14+
</div>
15+
<div className="row-span-1 mt-4 flex justify-around">
16+
<Footer />
4617
</div>
4718
</main>
4819
);
4920
}
50-
51-
async function CrudShowcase() {
52-
const latestPost = await api.post.getLatest();
53-
54-
return (
55-
<div className="w-full max-w-xs">
56-
{latestPost ? (
57-
<p className="truncate">Your most recent post: {latestPost.name}</p>
58-
) : (
59-
<p>You have no posts yet.</p>
60-
)}
61-
62-
<CreatePost />
63-
</div>
64-
);
65-
}
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export function capitalizeFirstLetter(string: string) {
2+
return string.charAt(0).toUpperCase() + string.slice(1);
3+
}

0 commit comments

Comments
 (0)