Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RestroHub-FrontEnd/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
<script type="module" src="src/index.jsx"></script>
</body>
</html>

19 changes: 10 additions & 9 deletions RestroHub-FrontEnd/src/pages/public/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ import {
const Landing = () => {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
const { isDark, toggle } = useTheme();
// ============================
// DATA
// ============================
const navLinks = [
// ===================== // DATA
// ===================== const navLinks = [
{ label: 'Features', href: '#features' },
{ label: 'How It Works', href: '#how-it-works' },
{ label: 'Pricing', href: '#pricing' },
Expand Down Expand Up @@ -156,6 +154,7 @@ const plans = [
name: 'Ramesh Patel',
role: 'Owner, Rajkot Dhaba',
text: 'Restroly doubled our order efficiency. Customers love the QR menu and we love the zero-error billing!',
text: 'Restroly doubled our order efficiency. Customers love the QR menu and we love the zero-error billing!',
rating: 5,
},
{
Expand Down Expand Up @@ -206,10 +205,8 @@ const plans = [
{ value: '4.9', label: 'App Rating' },
];

// ============================
// RENDER
// ============================
return (
// ===================== // RENDER
// ===================== return (
<div className="min-h-screen bg-white dark:bg-slate-900 dark:text-slate-100">

{/* ================================================ */}
Expand Down Expand Up @@ -608,6 +605,7 @@ const plans = [
Ready to Digitize Your Restaurant?
</h2>
<p className="mx-auto mt-4 max-w-lg text-lg text-blue-100/90">
Join 5+ restaurants across India already using Restroly to
Join 5+ restaurants across India already using Restroly to
serve customers faster.
</p>
Expand Down Expand Up @@ -674,6 +672,7 @@ const plans = [
<div className="mt-12 flex flex-col items-center justify-between gap-4 border-t border-slate-800 pt-8 sm:flex-row">
<p className="text-sm text-slate-500">
© {new Date().getFullYear()} Restroly. All rights reserved.
© {new Date().getFullYear()} Restroly. All rights reserved.
</p>
<p className="text-sm text-slate-500">Made with ❤️ in India</p>
</div>
Expand All @@ -683,4 +682,6 @@ const plans = [
);
};

export default Landing;
export default Landing;