forked from veda/www_veda_2025
feat: add typewriter-style love letter section with torn paper effect
- Added new love letter section below hero with custom typewriter font styling - Integrated torn paper visual effect using new booktear.png images - Added JMH Typewriter font and configured it in layout and Tailwind - Created new UI component Booktear.jsx for reusable torn paper effect - Added paper texture background and love-red color theme - Included stylized message with custom typography and spacing - Removed background color
This commit is contained in:
18
src/components/ui/Booktear.jsx
Normal file
18
src/components/ui/Booktear.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Image from 'next/image';
|
||||
|
||||
const Booktear = ({ className }) => {
|
||||
return (
|
||||
<div className={`w-full bg-transparent ${className || ''}`}>
|
||||
<Image
|
||||
unoptimized
|
||||
src="/images/booktear.png"
|
||||
alt="Page divider"
|
||||
width={1080}
|
||||
height={180}
|
||||
className="w-full h-auto"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Booktear;
|
||||
Reference in New Issue
Block a user