diff --git a/holistic health site b/holistic health site new file mode 100644 index 0000000000000..dbde25db0c327 --- /dev/null +++ b/holistic health site @@ -0,0 +1,74 @@ +import React from "react"; +import { BrowserRouter as Router, Route, Routes, Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; + +const Home = () => ( +
+

Holistic Health Coaching

+

Empowering you to achieve optimal wellness through natural healing and personalized guidance.

+ + + +
+); + +const Services = () => ( +
+

Our Services

+ + + + +
+); + +const Blog = () => ( +
+

Holistic Wellness Blog

+

Insights, tips, and inspiration to help you on your wellness journey.

+
+
+

The Power of Herbal Medicine

+

Learn how nature’s remedies can support your body’s healing process.

+ Read more +
+
+

Mindfulness for Stress Relief

+

Simple daily practices to reduce stress and increase balance.

+ Read more +
+
+
+); + +const Contact = () => ( +
+

Get in Touch

+

Schedule a free discovery call to start your wellness journey.

+ your.email@example.com +
+); + +const App = () => ( + + + + } /> + } /> + } /> + } /> + + +); + +export default App;