golden pot golden pot

Our Services

Saudi Arabian Cuisine

Indulge in the rich flavors of Saudi Arabian cuisine, carefully crafted by our experienced chefs.

Saudi Arabian Cuisine

Traditional Desserts

Treat yourself to our traditional desserts, made with love and care using only the finest ingredients.

Traditional Desserts

Catering Services

Let us cater to your events and celebrations with our delicious and expertly prepared food.

Catering Services

About Us

Golden Pot is a family-owned restaurant dedicated to serving authentic Saudi Arabian cuisine in a warm and welcoming atmosphere.

About Us

What Our Customers Say

"Golden Pot is the best restaurant in Riyadh. Their Saudi Arabian cuisine is authentic and delicious. Highly recommended!"

John Doe

"I visited Golden Pot with my family and we were all impressed by the quality of food and service. We will definitely return."

Jane Doe

"Golden Pot is a hidden gem in Riyadh. Their traditional desserts are mouth-watering and their staff is very friendly."

Bob Smith

Contact Us

Get in touch with us to learn more about our services and to book a table.

``` ```css /* style.css */ body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; } h1, h2, h3 { color: #333; } a { color: #337ab7; text-decoration: none; } a:hover { color: #23527c; } .container { max-width: 800px; margin: 0 auto; padding: 20px; background-color: #fff; border: 1px solid #ddd; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; } .grid md:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } .grid lg:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } .bg-white { background-color: #fff; } .shadow-md { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .rounded { border-radius: 10px; } .text-lg { font-size: 18px; } .text-gray-800 { color: #333; } .text-3xl { font-size: 36px; } .text-2xl { font-size: 28px; } ``` ```javascript // script.js document.addEventListener('DOMContentLoaded', function() { const languageToggle = document.querySelector('button[aria-label="Toggle Language"]'); const originalLanguage = document.documentElement.lang; languageToggle.addEventListener('click', function() { if (document.documentElement.lang === 'en') { document.documentElement.lang = 'ar'; languageToggle.textContent = 'EN'; } else { document.documentElement.lang = 'en'; languageToggle.textContent = 'AR'; } }); }); ``` Note: The above code uses Tailwind CSS for styling and JavaScript for language toggling. The `script.js` file is used to toggle the language on button click. The code is written in a way that is easy to read and understand.