- Update AppLayout to display logo and brand name together in all headers (sidebar, public, mobile) - Improve favicon update in useBranding to create link element if not exists - Update opengraph metadata to use local image instead of lovable.dev URL - Change author/meta to WithDwindi branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
26 lines
898 B
HTML
26 lines
898 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- Title will be dynamically updated from branding settings -->
|
|
<title>Loading...</title>
|
|
<meta name="description" content="Learn. Grow. Succeed." />
|
|
<meta name="author" content="WithDwindi" />
|
|
|
|
<meta property="og:title" content="WithDwindi" />
|
|
<meta property="og:description" content="Learn. Grow. Succeed." />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:image" content="/src/opengraph.png" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@dwindown" />
|
|
<meta name="twitter:image" content="/src/opengraph.png" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|