chore: rebrand application from Nantes to Marseille and update Antoine's color scheme from pink to blue
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="description" content="Liste des annonces d'appartements à Nantes | Vincent et Antoine" />
|
||||
<meta name="description" content="Liste des annonces d'appartements à Marseille | Vincent et Antoine" />
|
||||
<link rel="icon" href="/logo.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Appart List</title>
|
||||
|
||||
@@ -245,7 +245,7 @@ function App() {
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-xl font-bold text-sand-900 tracking-tight">
|
||||
Appart Nantes
|
||||
Appart Marseille
|
||||
</h1>
|
||||
<p className="text-xs text-sand-500">
|
||||
Vincent & Antoine
|
||||
|
||||
@@ -261,7 +261,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
||||
</span>
|
||||
)}
|
||||
{hasAntoineFeedback && (
|
||||
<span className="w-4 h-4 rounded-full bg-pink-500 text-white text-[9px] font-semibold flex items-center justify-center">
|
||||
<span className="w-4 h-4 rounded-full bg-blue-600 text-white text-[9px] font-semibold flex items-center justify-center">
|
||||
A
|
||||
</span>
|
||||
)}
|
||||
@@ -299,7 +299,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
||||
{/* Antoine */}
|
||||
<div className="space-y-1.5">
|
||||
<div className="flex items-center justify-between">
|
||||
<span className="text-xs font-semibold text-pink-500 uppercase tracking-wide">
|
||||
<span className="text-xs font-semibold text-blue-700 uppercase tracking-wide">
|
||||
Antoine
|
||||
</span>
|
||||
<StarRating value={noteA} onChange={setNoteA} />
|
||||
@@ -309,7 +309,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
||||
onChange={(e) => setCommentA(e.target.value)}
|
||||
placeholder="L'avis d'Antoine..."
|
||||
rows={2}
|
||||
className="w-full px-3 py-2 text-sm border border-sand-200 rounded-xl resize-none focus:outline-none focus:ring-2 focus:ring-pink-200 placeholder:text-sand-300 text-sand-800 bg-sand-50/50"
|
||||
className="w-full px-3 py-2 text-sm border border-sand-200 rounded-xl resize-none focus:outline-none focus:ring-2 focus:ring-blue-200 placeholder:text-sand-300 text-sand-800 bg-sand-50/50"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { useState } from "react";
|
||||
import { Lock, Loader2 } from "lucide-react";
|
||||
|
||||
const STORAGE_KEY = "appart_nantes_auth";
|
||||
const STORAGE_KEY = "appart_marseille_auth";
|
||||
|
||||
export default function PasswordGate({ children }) {
|
||||
const [authenticated, setAuthenticated] = useState(
|
||||
@@ -37,7 +37,7 @@ export default function PasswordGate({ children }) {
|
||||
<Lock size={24} className="text-white" />
|
||||
</div>
|
||||
<h1 className="text-2xl font-bold text-sand-900 tracking-tight">
|
||||
Appart Nantes
|
||||
Appart Marseille
|
||||
</h1>
|
||||
<p className="text-sm text-sand-400 mt-1">Vincent & Antoine</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user