Skip to content
17 changes: 17 additions & 0 deletions RestroHub-FrontEnd/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions RestroHub-FrontEnd/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restroly</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
Expand All @@ -15,3 +16,6 @@
<script type="module" src="src/index.jsx"></script>
</body>
</html>



18 changes: 18 additions & 0 deletions RestroHub-FrontEnd/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions RestroHub-FrontEnd/src/pages/public/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ const Landing = () => {


const { isDark, toggle } = useTheme();
// ============================
// DATA
// ============================
const navLinks = [
// ===================== // DATA
// ===================== const navLinks = [
{ label: 'Features', href: '#features' },
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert the extra unnecessary this lines

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @rdodiya, removed the leftover comment lines from Landing.jsx

{ label: 'How It Works', href: '#how-it-works' },
{ label: 'Pricing', href: '#pricing' },
Expand Down Expand Up @@ -259,10 +257,8 @@ const [contactForm, setContactForm] = useState({
{ 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