mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 16:51:33 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
20
apps/client/src/constants/colors.ts
Normal file
20
apps/client/src/constants/colors.ts
Normal file
@ -0,0 +1,20 @@
|
||||
export const colors: string[] = [
|
||||
"#78716c", // stone-500
|
||||
"#ef4444", // red-500
|
||||
"#f97316", // orange-500
|
||||
"#f59e0b", // amber-500
|
||||
"#eab308", // yellow-500
|
||||
"#84cc16", // lime-500
|
||||
"#22c55e", // green-500
|
||||
"#10b981", // emerald-500
|
||||
"#14b8a6", // teal-500
|
||||
"#06b6d4", // cyan-500
|
||||
"#0ea5e9", // sky-500
|
||||
"#3b82f6", // blue-500
|
||||
"#6366f1", // indigo-500
|
||||
"#8b5cf6", // violet-500
|
||||
"#a855f7", // purple-500
|
||||
"#d946ef", // fuchsia-500
|
||||
"#ec4899", // pink-500
|
||||
"#f43f5e", // rose-500
|
||||
];
|
||||
11
apps/client/src/constants/parallax-tilt.ts
Normal file
11
apps/client/src/constants/parallax-tilt.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { ReactParallaxTiltProps } from "react-parallax-tilt";
|
||||
|
||||
export const defaultTiltProps: ReactParallaxTiltProps = {
|
||||
scale: 1.05,
|
||||
tiltMaxAngleX: 8,
|
||||
tiltMaxAngleY: 8,
|
||||
perspective: 1400,
|
||||
glareEnable: true,
|
||||
glareMaxOpacity: 0.1,
|
||||
glareColor: "#fafafa",
|
||||
};
|
||||
7
apps/client/src/constants/query-keys.ts
Normal file
7
apps/client/src/constants/query-keys.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { QueryKey } from "@tanstack/react-query";
|
||||
|
||||
export const USER_KEY: QueryKey = ["user"];
|
||||
|
||||
export const RESUME_KEY: QueryKey = ["resume"];
|
||||
export const RESUMES_KEY: QueryKey = ["resumes"];
|
||||
export const RESUME_PREVIEW_KEY: QueryKey = ["resume", "preview"];
|
||||
Reference in New Issue
Block a user