diff --git a/lib/screens/home_screens/home_screen.dart b/lib/screens/home_screens/home_screen.dart
index b4e72ac234eb0ffd34bb26e66fc9d71ae1ba11a0..3412cac1e91ea4a90e8ee67337bcc4b7ab5b971c 100644
--- a/lib/screens/home_screens/home_screen.dart
+++ b/lib/screens/home_screens/home_screen.dart
@@ -35,12 +35,56 @@ class HomeScreen extends StatelessWidget {
               height: 150,
               decoration: BoxDecoration(
                 image: DecorationImage(
+                  fit: BoxFit.cover,
                   image: NetworkImage(
-                    ''),
+                      'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQi0Xg-k622Sbztlrb-L1o1CAla3zCbVc2lUw&usqp=CAU'),
                 ),
                 color: Colors.red,
                 borderRadius: BorderRadius.circular(10),
               ),
+              child: Row(
+                children: [
+                  Expanded(
+                    child: Container(
+                        child: Column(
+                      children: [
+                        Padding(
+                            padding:
+                                const EdgeInsets.only(right: 120, bottom: 10),
+                            child: Container(
+                              height: 40,
+                              width: 100,
+                              decoration: BoxDecoration(
+                                color: Color(0xffd1ad17),
+                                borderRadius: BorderRadius.only(
+                                  bottomRight: Radius.circular(50),
+                                  bottomLeft: Radius.circular(50),
+                                ),
+                              ),
+                              child: Center(
+                                child: Text(
+                                  'Vegi',
+                                  style: TextStyle(
+                                    fontSize: 17,
+                                    color: Colors.white,
+                                    shadows: [
+                                      BoxShadow(
+                                          color: Colors.green,
+                                          blurRadius: 10,
+                                          offset: Offset(3, 3))
+                                    ],
+                                  ),
+                                ),
+                              ),
+                            ))
+                      ],
+                    )),
+                  ),
+                  Expanded(
+                    child: Container(),
+                  ),
+                ],
+              ),
             )
           ]),
         ));