forked from veda/www_veda_2025
		
	refactor: simplify landing page components and layout
- Removed unused component imports from page.jsx to reduce bundle size - Streamlined Hero component by removing unnecessary elements and whitespace - Updated Hero container styling to use flex and min-h-screen for better centering - Kept only essential components (Header, Hero, Footer) in main page layout
This commit is contained in:
		@@ -1,12 +1,10 @@
 | 
			
		||||
import Image from 'next/image'
 | 
			
		||||
 | 
			
		||||
import { Button } from '@/components/Button'
 | 
			
		||||
import { Container } from '@/components/Container'
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export function Hero() {
 | 
			
		||||
  return (
 | 
			
		||||
    <Container className="pb-16 pt-20 text-center lg:pt-32 ">
 | 
			
		||||
    <Container className="flex min-h-screen items-center pb-16 pt-20 text-center lg:pt-32">
 | 
			
		||||
      {/* Background Video */}
 | 
			
		||||
      <div
 | 
			
		||||
        className="absolute inset-0 top-0 left-0 w-full h-full object-cover -z-10"
 | 
			
		||||
@@ -26,8 +24,6 @@ export function Hero() {
 | 
			
		||||
          <span className="relative">REIMAGINED</span>
 | 
			
		||||
        </span>{' '}
 | 
			
		||||
      </h1>
 | 
			
		||||
      
 | 
			
		||||
 | 
			
		||||
    </Container>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user