forked from veda/www_veda_2025
		
	- 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
		
			
				
	
	
		
			19 lines
		
	
	
		
			374 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			374 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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;
 |