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">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<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" />
|
<link rel="icon" href="/logo.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Appart List</title>
|
<title>Appart List</title>
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ function App() {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-xl font-bold text-sand-900 tracking-tight">
|
<h1 className="text-xl font-bold text-sand-900 tracking-tight">
|
||||||
Appart Nantes
|
Appart Marseille
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-xs text-sand-500">
|
<p className="text-xs text-sand-500">
|
||||||
Vincent & Antoine
|
Vincent & Antoine
|
||||||
|
|||||||
@@ -261,7 +261,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
|||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
{hasAntoineFeedback && (
|
{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
|
A
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
@@ -299,7 +299,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
|||||||
{/* Antoine */}
|
{/* Antoine */}
|
||||||
<div className="space-y-1.5">
|
<div className="space-y-1.5">
|
||||||
<div className="flex items-center justify-between">
|
<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
|
Antoine
|
||||||
</span>
|
</span>
|
||||||
<StarRating value={noteA} onChange={setNoteA} />
|
<StarRating value={noteA} onChange={setNoteA} />
|
||||||
@@ -309,7 +309,7 @@ export default function AppartCard({ annonce, onDelete, onUpdated }) {
|
|||||||
onChange={(e) => setCommentA(e.target.value)}
|
onChange={(e) => setCommentA(e.target.value)}
|
||||||
placeholder="L'avis d'Antoine..."
|
placeholder="L'avis d'Antoine..."
|
||||||
rows={2}
|
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>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Lock, Loader2 } from "lucide-react";
|
import { Lock, Loader2 } from "lucide-react";
|
||||||
|
|
||||||
const STORAGE_KEY = "appart_nantes_auth";
|
const STORAGE_KEY = "appart_marseille_auth";
|
||||||
|
|
||||||
export default function PasswordGate({ children }) {
|
export default function PasswordGate({ children }) {
|
||||||
const [authenticated, setAuthenticated] = useState(
|
const [authenticated, setAuthenticated] = useState(
|
||||||
@@ -37,7 +37,7 @@ export default function PasswordGate({ children }) {
|
|||||||
<Lock size={24} className="text-white" />
|
<Lock size={24} className="text-white" />
|
||||||
</div>
|
</div>
|
||||||
<h1 className="text-2xl font-bold text-sand-900 tracking-tight">
|
<h1 className="text-2xl font-bold text-sand-900 tracking-tight">
|
||||||
Appart Nantes
|
Appart Marseille
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-sm text-sand-400 mt-1">Vincent & Antoine</p>
|
<p className="text-sm text-sand-400 mt-1">Vincent & Antoine</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user