Skip to content
Merged
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
16 changes: 9 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,31 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Mitsi - Conferencing Platform to Connect and Collaborate"
content="Mitsi - Conferencing Platform to Connect and Collaborate. Built for teams that demand perfection."
/>
<meta
name="keywords"
content="Mitsi, Connect, Collaborate, Conferencing Video Conferencing, audio conferencing, video and audio conferencing, WebRTC, meeting, online meetings, real-time collaboration, conferencing, virtual events, live streaming"
/>
<meta name="robots" content="index, follow" />
<meta property="og:title" content="Mitsi - Connect and Collaborate" />
<meta
property="og:title"
content="Mitsi - Enabling Impactful Conversations"
/>
<meta
property="og:description"
content="Mitsi - Conferencing Platform to Connect and Collaborate"
content="Mitsi - Conferencing Platform to Connect and Collaborate. Built for teams that demand perfection"
/>
<meta property="og:image" content="https://mitsi.app/logo.svg" />
<meta property="og:image" content="https://mitsi.app/logo.png" />
<meta property="og:url" content="https://mitsi.app" />
<meta property="og:type" content="website" />

<link rel="icon" href="https://mitsi.app/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="https://mitsi.app/logo.svg" />
<title>Mitsi - Conferencing Platform to Connect and Collaborate</title>
<link rel="apple-touch-icon" href="https://mitsi.app/logo.png" />
<title>Mitsi - Enabling Impactful Conversations</title>
<script src="/config.js"></script>
<script
defer
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/home/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useCallback, useRef } from 'react';
import { Button } from '../ui/button';
import { ArrowRight, Play } from 'lucide-react';
import { Play } from 'lucide-react';
import uniqid from 'uniqid';
import { useNavigate } from 'react-router-dom';

Expand Down Expand Up @@ -46,14 +46,14 @@ const Hero = () => {
<Play className="w-5 h-5 mr-3 group-hover:scale-110 transition-transform" />
Experience Mitsi
</Button>
<Button
{/* <Button
variant="outline"
size="lg"
className="border-white/20 text-white hover:bg-white/5 hover:border-white/40 px-12 py-6 text-lg font-light backdrop-blur-sm"
>
Watch Demo
<ArrowRight className="w-5 h-5 ml-3" />
</Button>
</Button> */}
</div>
</div>
</div>
Expand Down
Loading