Skip to content

Commit 6bed2ff

Browse files
committed
howto videos
1 parent a257998 commit 6bed2ff

9 files changed

+74
-3
lines changed

public/videos/generate-emails.mp4

1.92 MB
Binary file not shown.

public/videos/navigate-products.mp4

1.41 MB
Binary file not shown.

public/videos/open-app.mp4

1.67 MB
Binary file not shown.

public/videos/status-reviews.mp4

2.58 MB
Binary file not shown.

public/videos/view-ai-suggestions.mp4

705 KB
Binary file not shown.

src/components/HomePage.tsx

+61-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import '~/styles/home.css';
44

55
import Footer from '~/components/HomePage/Footer';
66
import Header from '~/components/HomePage/Header';
7+
import Video from '~/components/HomePage/Video';
78

89
export const HomePage = () => {
910
return (
@@ -15,7 +16,7 @@ export const HomePage = () => {
1516
{/* Hero content */}
1617
<div className="pb-12 pt-32 md:pb-20 md:pt-40">
1718
{/* Section header */}
18-
<div className="pb-12 text-center md:pb-16">
19+
<div className="pb-12 text-center md:pb-6">
1920
<h1 className="leading-tighter mb-4 text-5xl font-extrabold tracking-tighter md:text-6xl">
2021
Welcome to
2122
<br />
@@ -25,6 +26,65 @@ export const HomePage = () => {
2526
</h1>
2627
</div>
2728
</div>
29+
<div className="my-10">
30+
<h2 className="text-3xl font-semibold text-gray-700">
31+
How to access Review Pulse App
32+
</h2>
33+
<div className="mt-2 text-xl">
34+
<p className="pb-2 text-gray-600">
35+
Navigate to Products/View/Actions/ildecimo Review Pulse
36+
</p>
37+
<div className="overflow-hidden rounded-xl shadow-xl">
38+
<Video src="/videos/open-app.mp4" />
39+
</div>
40+
</div>
41+
42+
<h2 className="mt-12 text-3xl font-semibold text-gray-700">
43+
How to view AI suggestions
44+
</h2>
45+
<div className="mt-2 text-xl">
46+
<p className="pb-2 text-gray-600">Navigate to AI Explore</p>
47+
<div className="overflow-hidden rounded-xl shadow-xl">
48+
<Video src="/videos/view-ai-suggestions.mp4" />
49+
</div>
50+
</div>
51+
52+
<h2 className="mt-12 text-3xl font-semibold text-gray-700">
53+
Change the Review Status
54+
</h2>
55+
<div className="mt-2 text-xl">
56+
<p className="pb-2 text-gray-600">
57+
Use the Approve / Disapprove / Set Pending buttons
58+
</p>
59+
<div className="overflow-hidden rounded-xl shadow-xl">
60+
<Video src="/videos/status-reviews.mp4" />
61+
</div>
62+
</div>
63+
64+
<h2 className="mt-12 text-3xl font-semibold text-gray-700">
65+
Generate e-mails with AI
66+
</h2>
67+
<div className="mt-2 text-xl">
68+
<p className="pb-2 text-gray-600">
69+
Use the Follow Up and Thank You buttons
70+
</p>
71+
<div className="overflow-hidden rounded-xl shadow-xl">
72+
<Video src="/videos/generate-emails.mp4" />
73+
</div>
74+
</div>
75+
76+
<h2 className="mt-12 text-3xl font-semibold text-gray-700">
77+
Navigate to all products
78+
</h2>
79+
<div className="mt-2 text-xl">
80+
<p className="pb-2 text-gray-600">
81+
Use the top breadcrumb to navigate to all products
82+
</p>
83+
<div className="overflow-hidden rounded-xl shadow-xl">
84+
<Video src="/videos/navigate-products.mp4" />
85+
</div>
86+
</div>
87+
</div>
2888
</div>
2989
</section>
3090
</main>

src/components/HomePage/Header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function Header() {
3838
<ul className="flex grow flex-wrap items-center justify-end">
3939
<li>
4040
<Link
41-
href="https://github.com/ildecimo/ReviewPulse"
41+
href="https://reviewpulse.ildecimo.com/"
4242
className="btn-sm ml-3 bg-blue-800 text-white hover:bg-blue-700"
4343
target="_blank"
4444
>

src/components/HomePage/MobileMenu.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default function MobileMenu() {
7575
<ul className="px-5 py-2">
7676
<li>
7777
<Link
78-
href="https://github.com/ildecimo/ReviewPulse"
78+
href="https://reviewpulse.ildecimo.com/"
7979
className="btn-sm my-2 w-full bg-blue-800 text-white hover:bg-blue-700"
8080
onClick={() => setMobileNavOpen(false)}
8181
target="_blank"

src/components/HomePage/Video.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
interface VideoProps {
2+
src: string;
3+
}
4+
5+
export default function Video({ src }: VideoProps) {
6+
return (
7+
<video muted autoPlay loop>
8+
<source src={src} type="video/mp4" />
9+
</video>
10+
);
11+
}

0 commit comments

Comments
 (0)