Skip to content

Commit fa13a04

Browse files
committed
feat: vercel deploy
1 parent aa1f93e commit fa13a04

File tree

11 files changed

+13
-38
lines changed

11 files changed

+13
-38
lines changed

frontend/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
.vercel

frontend/bun.lock

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
"motion": "^12.23.24",
2626
"react": "^19.1.0",
2727
"react-dom": "^19.1.0",
28-
"react-ig-feed": "^1.7.0",
29-
"react-instagram-feed": "^0.1.3-alpha",
3028
"svg-dotted-map": "^2.0.1",
3129
"tailwind-merge": "^3.3.1",
3230
"tailwindcss": "^4.1.13"
@@ -50,4 +48,4 @@
5048
"typescript-eslint": "^8.35.1",
5149
"vite": "^7.0.4"
5250
}
53-
}
51+
}

frontend/src/components/IcBaselineDiscord.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import type { SVGProps } from 'react';
32

43
export function IcBaselineDiscord(props: SVGProps<SVGSVGElement>) {

frontend/src/components/RiInstagramFill.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import type { SVGProps } from 'react';
32

43
export function RiInstagramFill(props: SVGProps<SVGSVGElement>) {

frontend/src/components/ui/animated-shiny-text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ComponentPropsWithoutRef, CSSProperties, FC } from "react"
1+
import type { ComponentPropsWithoutRef, CSSProperties, FC } from "react"
22

33
import { cn } from "@/lib/utils"
44

frontend/src/components/ui/blur-fade.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
import { useRef } from "react"
2-
import {
3-
AnimatePresence,
4-
motion,
5-
MotionProps,
6-
useInView,
7-
UseInViewOptions,
8-
Variants,
9-
} from "motion/react"
2+
import { AnimatePresence, motion, useInView } from "motion/react"
3+
import type { MotionProps, UseInViewOptions, Variants } from "motion/react"
104

115
type MarginType = UseInViewOptions["margin"]
126

frontend/src/components/ui/hyper-text.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { useEffect, useRef, useState } from "react"
2-
import { AnimatePresence, motion, MotionProps } from "motion/react"
2+
import { AnimatePresence, motion } from "motion/react"
3+
import type { MotionProps } from "motion/react"
34

45
import { cn } from "@/lib/utils"
56

frontend/src/components/ui/line-shadow-text.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { motion, MotionProps } from "motion/react"
1+
import { motion } from "motion/react"
2+
import type { MotionProps } from "motion/react"
23

34
import { cn } from "@/lib/utils"
45

frontend/src/components/ui/number-ticker.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { ComponentPropsWithoutRef, useEffect, useRef } from "react"
1+
import { useEffect, useRef } from "react"
2+
import type { ComponentPropsWithoutRef } from "react"
23
import { useInView, useMotionValue, useSpring } from "motion/react"
34

45
import { cn } from "@/lib/utils"

0 commit comments

Comments
 (0)