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
2 changes: 1 addition & 1 deletion client/src/pages/AboutPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function AboutPage() {

return (
<>
<motion.div className="p-8 bg-gradient-to-br from-gray-800 via-purple-600 to-gray-800 min-h-screen flex flex-col items-center text-white space-y-6">
<motion.div className="pt-16 px-8 bg-gradient-to-br from-gray-800 via-purple-600 to-gray-800 min-h-screen flex flex-col items-center text-white space-y-6">
<motion.div className="flex flex-col justify-center items-center">
<motion.h1
className="font-extrabold text-9xl bg-clip-text text-transparent bg-gradient-to-r from-purple-200 to-white flex"
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/AuthPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const AuthPage = ({ socket, typingUtils }) => {
];

return (
<div className="min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 flex flex-col">
<div className="min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 flex flex-col pt-8">
{/* Animated background */}
<div className="absolute inset-0 overflow-hidden">
<div className="absolute -top-40 -right-40 w-80 h-80 bg-purple-400 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-pulse"></div>
Expand All @@ -172,7 +172,7 @@ const AuthPage = ({ socket, typingUtils }) => {
<div className="hidden lg:flex lg:w-1/2 flex-col justify-center p-12">
<div className="max-w-md">
<div className="flex items-center space-x-3 mb-8">
<h1 className="text-3xl font-bold text-white">ChatterSpace</h1>
<h1 className="font-bold text-white text-[49px]">ChatterSpace</h1>
{socket && socket.connected && (
<div
className="w-3 h-3 bg-green-400 rounded-full animate-pulse"
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/ChatPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const ChatPage = () => {
];

return (
<div className="h-screen bg-slate-900 flex flex-col">
<div className="h-screen bg-slate-900 flex flex-col pt-16 md:pt-16">
{/* Header */}
<header className="bg-slate-800 border-b border-slate-700 px-4 py-3 flex items-center justify-between">
<div className="flex items-center space-x-4">
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/FeaturesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const FeaturesPage = () => {
];

return (
<div className="min-h-screen bg-slate-900 text-white">
<div className="min-h-screen bg-slate-900 text-white pt-16 md:pt-16">
{/* Header */}
<header className="bg-slate-800 border-b border-slate-700">
<div className="container mx-auto px-4 py-6">
Expand Down
Loading