diff --git a/next.config.js b/next.config.js index ddec672..78a9610 100644 --- a/next.config.js +++ b/next.config.js @@ -20,15 +20,18 @@ const nextConfig = { }, }, webpack(config, options) { - // Add file-loader for .mp4 files + // Add url-loader for video files config.module.rules.push({ test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)$/, use: [ { - loader: 'file-loader', + loader: 'url-loader', options: { + limit: 8192, + fallback: 'file-loader', + publicPath: '/_next/static/media/', + outputPath: 'static/media/', esModule: false, - name: '[path][name].[ext]', }, }, ], diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx index ce74ba7..6f00757 100644 --- a/src/components/Hero.jsx +++ b/src/components/Hero.jsx @@ -1,28 +1,29 @@ - import { Button } from '@/components/Button' import { Container } from '@/components/Container' +import Image from 'next/image' export function Hero() { return (
{/* Background Video */} - - + {/* Welcome Content Overlay */}
- VEDA + VEDA

diff --git a/src/images/veda_logo_dark.svg b/src/images/veda_logo_dark.svg new file mode 100644 index 0000000..63c664f --- /dev/null +++ b/src/images/veda_logo_dark.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/videos/hero4.mp4 b/src/videos/hero4.mp4 new file mode 100644 index 0000000..cbef1a3 Binary files /dev/null and b/src/videos/hero4.mp4 differ diff --git a/veda-deployment-final.tar.gz b/veda-deployment-final.tar.gz new file mode 100644 index 0000000..94055d8 Binary files /dev/null and b/veda-deployment-final.tar.gz differ