menu

VÉDA

Brand Idea:
VÉDA represents a blend of tradition and modern elegance, crafted to bring sophistication to every sip. The brand name itself evokes wisdom and heritage, aligning perfectly with the refined character of red wine.

Design Concept:

  • Color Palette: Deep royal navy background paired with golden line art creates a luxurious and timeless feel.

  • Typography: Modern serif with accents, giving the label a refined and premium touch.

  • Illustration: Hand-drawn grapevine details subtly embossed in gold, symbolizing authenticity, craftsmanship, and the natural origin of wine.

  • Layout: A clean vertical alignment highlights the brand name “VÉDA,” ensuring strong shelf visibility and elegance.

Bottle Label Details:

  • Name: VÉDA

  • Wine Type: Red Wine (750ML, 13.5% ABV)

  • Tagline: “Timeless elegance in every sip”

  • Tone: Premium, elegant, sophisticated

Brand Values:

  • Luxury and refinement

  • Nature-inspired authenticity

  • Modern elegance rooted in tradition

const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(75, window.innerWidth/window.innerHeight, 0.1, 1000); const renderer = new THREE.WebGLRenderer({ alpha: true }); renderer.setSize(window.innerWidth, 500); document.getElementById("cube-container").appendChild(renderer.domElement); // Cube geometry const geometry = new THREE.BoxGeometry(2, 2, 2); // Materials (you can replace images) const materials = [ new THREE.MeshBasicMaterial({ color: 0x111111 }), new THREE.MeshBasicMaterial({ color: 0x222222 }), new THREE.MeshBasicMaterial({ color: 0x333333 }), new THREE.MeshBasicMaterial({ color: 0x444444 }), new THREE.MeshBasicMaterial({ color: 0x555555 }), new THREE.MeshBasicMaterial({ color: 0x666666 }) ]; const cube = new THREE.Mesh(geometry, materials); scene.add(cube); camera.position.z = 5; function animate() { requestAnimationFrame(animate); cube.rotation.x += 0.01; cube.rotation.y += 0.01; renderer.render(scene, camera); } animate();