diff --git a/src/components/Veda1.jsx b/src/components/Veda1.jsx
index 61dfe94..38d2f52 100644
--- a/src/components/Veda1.jsx
+++ b/src/components/Veda1.jsx
@@ -1,5 +1,8 @@
'use client'
+import { H1, H3, H4, P, PXS, PXXS } from '@/components/text'
+import { Button } from '@/components/Button'
+
import { useState } from 'react'
import {
Radio,
@@ -126,7 +129,7 @@ export default function Example() {
return (
-
+
{/* Image gallery */}
@@ -138,7 +141,7 @@ export default function Example() {
key={image.id}
className="group relative flex h-24 cursor-pointer items-center justify-center bg-white text-sm font-medium uppercase text-gray-900 hover:bg-gray-50 focus:outline-none focus:ring focus:ring-opacity-50 focus:ring-offset-4"
>
- {image.name}
+ {image.name}
@@ -165,48 +168,38 @@ export default function Example() {
{/* Product info */}
-
-
{product.name}
+
+
{product.name}
-
-
Product information
-
-
-
-
Description
-
-
+
+
{product.description.map((paragraph, index) => (
{paragraph}
))}
-
-
- Additional details
-
-
+
-
FEATURES
+
Specifications
-
+
{product.details[0].items.map((item) => (
-
- {item}
+ {item}
))}
-