feat: add activity feed and background effects
- Implemented ActivityFeed component to display real-time user activity including coding, music, and chat interactions. - Added GooFilter and BackgroundBlobs components for enhanced visual effects. - Updated layout to include new components and ensure proper stacking context. - Enhanced Tailwind CSS configuration with new color and font settings. - Created API route to mock activity data from n8n. - Refactored main page structure to streamline component rendering.
This commit is contained in:
@@ -10,7 +10,68 @@ export default {
|
||||
// Add other paths if necessary
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
extend: {
|
||||
colors: {
|
||||
background: "var(--background)",
|
||||
foreground: "var(--foreground)",
|
||||
card: {
|
||||
DEFAULT: "var(--card)",
|
||||
foreground: "var(--card-foreground)",
|
||||
},
|
||||
popover: {
|
||||
DEFAULT: "var(--popover)",
|
||||
foreground: "var(--popover-foreground)",
|
||||
},
|
||||
primary: {
|
||||
DEFAULT: "var(--primary)",
|
||||
foreground: "var(--primary-foreground)",
|
||||
},
|
||||
secondary: {
|
||||
DEFAULT: "var(--secondary)",
|
||||
foreground: "var(--secondary-foreground)",
|
||||
},
|
||||
muted: {
|
||||
DEFAULT: "var(--muted)",
|
||||
foreground: "var(--muted-foreground)",
|
||||
},
|
||||
accent: {
|
||||
DEFAULT: "var(--accent)",
|
||||
foreground: "var(--accent-foreground)",
|
||||
},
|
||||
destructive: {
|
||||
DEFAULT: "var(--destructive)",
|
||||
foreground: "var(--destructive-foreground)",
|
||||
},
|
||||
border: "var(--border)",
|
||||
input: "var(--input)",
|
||||
ring: "var(--ring)",
|
||||
cream: "#FDFCF8",
|
||||
sand: "#F3F1E7",
|
||||
stone: {
|
||||
50: "#FAFAF9",
|
||||
100: "#F5F5F4",
|
||||
200: "#E7E5E4",
|
||||
300: "#D6D3D1",
|
||||
400: "#A8A29E",
|
||||
500: "#78716C",
|
||||
600: "#57534E",
|
||||
700: "#44403C",
|
||||
800: "#292524",
|
||||
900: "#1C1917",
|
||||
},
|
||||
liquid: {
|
||||
mint: "#A7F3D0",
|
||||
lavender: "#DDD6FE",
|
||||
blue: "#BFDBFE",
|
||||
rose: "#FECACA",
|
||||
yellow: "#FDE68A",
|
||||
}
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['var(--font-inter)', 'sans-serif'],
|
||||
mono: ['var(--font-roboto-mono)', 'monospace'],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
} satisfies Config;
|
||||
|
||||
Reference in New Issue
Block a user