diff --git a/interfaces/index.ts b/interfaces/index.ts deleted file mode 100644 index 68528c5..0000000 --- a/interfaces/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -// You can include shared interfaces/types in a separate file -// and then use them in any component by importing them. For -// example, to import the interface below do: -// -// import { User } from 'path/to/interfaces'; - -export type User = { - id: number - name: string -} diff --git a/pages/index.tsx b/pages/index.tsx index 89a414d..792c757 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -121,11 +121,20 @@ const IndexPage = () => {

Here are a few projects I've been working on!

+
+ {/* Stryx Photo */} +
+

Lunar Design

+

American counterpart of the French-American duo making software that's out of this world.

+ Visit +
+
+
Stryx Photo

Stryx

-

Roblox Group Management made easy

+

Roblox Group Management made easy (defunct, no long associated)

Visit
@@ -152,7 +161,7 @@ const IndexPage = () => { Ricky.cat Photo

Ricky.cat

-

My first Next.js project! A place to share my cat. Discontinued.

+

My first Next.js project! A place to share my cat. Discontinued (for now).

Visit
@@ -187,6 +196,18 @@ const IndexPage = () => {
Grape Logo
+ +
+ New Stryx Logo +
+ +
+ Nyxx Logo +
+ +
+ Lunar Design Logo +
diff --git a/public/img/designs/LunarDesign.png b/public/img/designs/LunarDesign.png new file mode 100644 index 0000000..f35ac0c Binary files /dev/null and b/public/img/designs/LunarDesign.png differ diff --git a/public/img/designs/Nyxx.png b/public/img/designs/Nyxx.png new file mode 100644 index 0000000..32b34e8 Binary files /dev/null and b/public/img/designs/Nyxx.png differ diff --git a/public/img/designs/StryxNew.png b/public/img/designs/StryxNew.png new file mode 100644 index 0000000..f3e6a76 Binary files /dev/null and b/public/img/designs/StryxNew.png differ diff --git a/utils/sample-data.ts b/utils/sample-data.ts deleted file mode 100644 index 1dd38ec..0000000 --- a/utils/sample-data.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { User } from '../interfaces' - -/** Dummy user data. */ -export const sampleUserData: User[] = [ - { id: 101, name: 'Alice' }, - { id: 102, name: 'Bob' }, - { id: 103, name: 'Caroline' }, - { id: 104, name: 'Dave' }, -]