feat(metadata): Update page metadata and enhance video presentation

- Set metadataBase for consistent URL structure across pages
- Add Open Graph and Twitter metadata for improved social sharing
- Implement canonical links and robots directives for SEO optimization
- Replace static image with video previews for a more dynamic user experience
This commit is contained in:
AmirReza Jamali
2026-04-16 11:01:38 +03:30
parent 1bf3b91c12
commit 635ca32b3a
6 changed files with 89 additions and 10 deletions
+21 -2
View File
@@ -157,14 +157,33 @@ export default function Home() {
height={22}
className="absolute top-4 left-1/2 -translate-x-1/2"
/>
<Image
<div className="-z-10 border-8 border-black rounded-4xl overflow-hidden h-full w-full">
<video
className="max-h-full w-full object-cover"
autoPlay
loop
muted
playsInline
preload="auto"
aria-label="Opp lens application preview on a mobile phone">
<source
src="/mobile.webm"
type="video/webm"
/>
<source
src="/mobile.mp4"
type="video/mp4"
/>
</video>
</div>
{/* <Image
className="-z-10 border-8 border-black rounded-4xl overflow-hidden h-full w-full"
src="/mobile.gif"
width={300}
height={920}
loading="lazy"
alt="phone"
/>
/> */}
</div>
</section>