8 Commits

Author SHA1 Message Date
kudinDmitriyUp
b4fbdf323c Updated color theme to blue. 2026-05-30 12:52:21 +00:00
179c82d33b Merge version_4_1780144896108 into main
Merge version_4_1780144896108 into main
2026-05-30 12:41:46 +00:00
310125ee37 Update src/pages/blog/BlogPage.tsx 2026-05-30 12:41:43 +00:00
55c8122ef6 Update src/pages/HomePage.tsx 2026-05-30 12:41:42 +00:00
d77a269fa2 Merge version_3_1780144827521 into main
Merge version_3_1780144827521 into main
2026-05-30 12:40:37 +00:00
02056460c0 Update src/pages/HomePage.tsx 2026-05-30 12:40:34 +00:00
d6cc7bdadd Merge version_2_1780143526751 into main
Merge version_2_1780143526751 into main
2026-05-30 12:18:56 +00:00
4a26955d5d Update src/pages/HomePage.tsx 2026-05-30 12:18:53 +00:00
3 changed files with 13 additions and 26 deletions

View File

@@ -5,15 +5,15 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f5f5f5;
--primary-cta: #ffdf7d;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
--accent: #b8860b;
--background-accent: #8b6914;
--background: #0d1117;
--card: #161b22;
--foreground: #c9d1d9;
--primary-cta: #58a6ff;
--primary-cta-text: #0d1117;
--secondary-cta: #21262d;
--secondary-cta-text: #c9d1d9;
--accent: #3080d0;
--background-accent: #1f3652;
/* @layout/border-radius/rounded */
--radius: 0.5rem;

View File

@@ -14,8 +14,8 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBrand
brand="Grand Lux Hotel"
description="Experience unparalleled elegance and world-class service in the heart of the city."
brand="Luxuryury"
description="Experience unparalleled elegance and world-clasrvice in the heart of the city."
primaryButton={{
text: "Book Your Stay",
href: "#contact",
@@ -45,13 +45,13 @@ export default function HomePage() {
<SectionErrorBoundary name="amenities">
<FeaturesBorderGlow
tag="Our Amenities"
title="Indulge in Unrivaled Comfort"
title="ulge in Unrivaled Comfort"
description="From exquisite dining to serene wellness, every aspect of your stay is designed for pure relaxation and enjoyment."
features={[
{
icon: Utensils,
title: "Gourmet Dining",
description: "Savor culinary masterpieces at our Michelin-starred restaurant.",
description: "Savor culinary at our Michelin-starred restaurant.",
},
{
icon: Droplets,

View File

@@ -1,13 +0,0 @@
import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards";
const BlogPage = () => {
return (
<BlogSimpleCards
tag="Blog"
title="Latest Articles"
description="Stay updated with our latest insights and news"
/>
);
};
export default BlogPage;