Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
<a href="https://skywalkerSam.dev">
<img src="/starboy-inc.png" alt="Starboy Logo" height=128>
</a>
<h1>Welcome to My Personal Corner of The Web!</h1>
<h1>Among the Stars...</h1>

</div>

## Domains
&nbsp;

## 🌐 Domains

[skywalkerSam.dev](https://skywalkersam.dev)

[skywalkerSam-dev.vercel.app](https://skywalkersam-dev.vercel.app/)

## Sources
&nbsp;

## 🔗 Sources

- [CREATE T3 APP](https://create.t3.gg/)
- [shadcn/ui](https://ui.shadcn.com/)
- [Blog Starter Kit](https://vercel.com/templates/next.js/blog-starter-kit)
- [CREATE T3 APP](https://create.t3.gg/)
- [Flex Docs - tailwindcss](https://tailwindcss.com/docs/flex)
- Font: [Paprika](https://github.com/etunni/paprika)
- tailwindcss - [Flex Docs](https://tailwindcss.com/docs/flex)
- Font - [Paprika](https://github.com/etunni/paprika)

<!-- ## initial Deployments w/ [Firebase](https://firebase.google.com/)

Expand All @@ -28,10 +32,24 @@

&nbsp;

&nbsp;

&nbsp;

Until Next Time...✌️

&nbsp;

❤️

&nbsp;

&nbsp;

&nbsp;

<div align="center">
<p>Built w/ <a href="https://nextjs.org">Next.js</a> + <a href="https://vercel.com">Vercel</a>.</p>
<p>Built w/ <a href="https://nextjs.org">Next.js</a> + <a href="https://vercel.com">Vercel</a></p>
</div>

&nbsp;
11 changes: 0 additions & 11 deletions _data/constants.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/about/_components/animated-intro.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
import "./animated-intro.css";
import { nameList, doList, emojiList } from "_data/constants";
import { nameList, doList, emojiList } from "~/lib/constants";
import { useGSAP } from "@gsap/react";
import gsap from "gsap";

Expand Down
20 changes: 3 additions & 17 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
import "~/styles/globals.css";
import type { Metadata } from "next";
import { ThemeProvider } from "~/components/ui/theme-provider";
// import Footer from "~/components/footer";
// import { Ubuntu } from "next/font/google";
// import { Geist } from "next/font/google";
import { Paprika } from "next/font/google";
import { NavBar } from "~/components/NavBar";

// const ubuntu = Ubuntu({
// weight: ["400", "700"],
// style: ["normal", "italic"],
// subsets: ["latin"],
// display: "swap",
// });

// const geist = Geist({
// subsets: ["latin"],
// variable: "--font-geist-sans",
// });
import Footer from "~/components/Footer";

const paprika = Paprika({
subsets: ["latin"],
Expand Down Expand Up @@ -47,13 +33,13 @@ export default function RootLayout({
<ThemeProvider
attribute="class"
defaultTheme="dark"
enableSystem
// enableSystem
disableTransitionOnChange
>
<NavBar></NavBar>
<main>{children}</main>

{/* <Footer></Footer> */}
<Footer></Footer>
</ThemeProvider>
</body>
</html>
Expand Down
17 changes: 13 additions & 4 deletions src/lib/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
export const EXAMPLE_PATH = "/blog";
export const CMS_NAME = "Markdown";
export const HOME_OG_IMAGE_URL =
"/starboy.svg";
export const HOME_OG_IMAGE_URL = "/src/app/opengraph-image.png";

export const nameList: { text: string }[] = [
{ text: "Sam" },
{ text: "Skywalker" },
];

export const doList: { text: string }[] = [
{ text: "Write" },
{ text: "Build" },
];

export const emojiList: { text: string }[] = [{ text: "👋" }, { text: "✌️" }];