Fix: Correct template literal syntax in Terms and Privacy pages
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
This commit is contained in:
@ -234,7 +234,7 @@ export default function PrivacyPage() {
|
||||
|
||||
<div className="space-y-10">
|
||||
{sections.map((section, i) => (
|
||||
<section key={section.title} className="animate-slide-up" style={{ animationDelay: \`\${i * 30}ms\` }}>
|
||||
<section key={section.title} className="animate-slide-up" style={{ animationDelay: `${i * 30}ms` }}>
|
||||
<h2 className="text-heading-sm font-medium text-foreground mb-4">{section.title}</h2>
|
||||
<div
|
||||
className="prose-custom text-body text-foreground-muted leading-relaxed [&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-2 [&_li]:text-foreground-muted [&_strong]:text-foreground [&_p]:mb-4"
|
||||
|
||||
@ -200,7 +200,7 @@ export default function TermsPage() {
|
||||
|
||||
<div className="space-y-10">
|
||||
{sections.map((section, i) => (
|
||||
<section key={section.title} className="animate-slide-up" style={{ animationDelay: \`\${i * 30}ms\` }}>
|
||||
<section key={section.title} className="animate-slide-up" style={{ animationDelay: `${i * 30}ms` }}>
|
||||
<h2 className="text-heading-sm font-medium text-foreground mb-4">{section.title}</h2>
|
||||
<div
|
||||
className="prose-custom text-body text-foreground-muted leading-relaxed [&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-2 [&_li]:text-foreground-muted [&_strong]:text-foreground [&_p]:mb-4"
|
||||
|
||||
Reference in New Issue
Block a user