Skip to content
Open
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
82 changes: 81 additions & 1 deletion frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,85 @@
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: sans-serif;
}

/* Custom Animations for Dynamic Homepage */
@keyframes gradient-x {
0%, 100% {
background-size: 200% 200%;
background-position: left center;
}
50% {
background-size: 200% 200%;
background-position: right center;
}
}

@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}

@keyframes pulse-glow {
0%, 100% {
opacity: 0.5;
transform: scale(1);
}
50% {
opacity: 0.8;
transform: scale(1.05);
}
}

/* Animation Classes */
.animate-gradient-x {
animation: gradient-x 4s ease infinite;
}

.animate-float {
animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}

/* Animation Delays */
.animation-delay-1000 {
animation-delay: 1s;
}

.animation-delay-2000 {
animation-delay: 2s;
}

.animation-delay-3000 {
animation-delay: 3s;
}

.animation-delay-4000 {
animation-delay: 4s;
}

.animation-delay-5000 {
animation-delay: 5s;
}

.animation-delay-6000 {
animation-delay: 6s;
}

/* Smooth hover transitions */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
4 changes: 2 additions & 2 deletions frontend/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const geistMono = Geist_Mono({
});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Skinalyze",
description: "AI-powered skin disease detection platform. Upload photos or use your camera for instant skin condition analysis and health insights.",
};

export default function RootLayout({
Expand Down
Loading