feat: Add user data import feature (Fixes #26) #27

Merged
egullickson merged 11 commits from issue-26-add-user-data-import into main 2026-01-12 03:22:32 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 068db991a4 - Show all commits

View File

@@ -68,7 +68,7 @@ export function renderEmailLayout(content: string): string {
<a href="{{unsubscribeUrl}}" style="${EMAIL_STYLES.footerLink}" target="_blank">Manage Email Preferences</a>
</p>
<p style="${EMAIL_STYLES.copyright}">
&copy; 2025 MotoVaultPro. All rights reserved.
&copy; {new Date().getFullYear()} MotoVaultPro. All rights reserved.
</p>
</td>
</tr>

View File

@@ -252,7 +252,7 @@ export const HomePage = () => {
<footer className="bg-black text-white py-8 px-4 md:px-8 border-t border-white/10">
<div className="max-w-7xl mx-auto text-center">
<p className="text-white/50">
&copy; {new Date().getFullYear()} MotoVaultPro. All rights reserved.
&copy; {new Date().getFullYear()} FB Technologies LLC. All rights reserved.
</p>
</div>
</footer>