Skip to content

Commit

Permalink
Merge pull request #281 from chitraa-cj/ScrollTop
Browse files Browse the repository at this point in the history
added scroll to top features in contibutor and review us section
  • Loading branch information
subhadeeproy3902 authored Jun 13, 2024
2 parents a0aeb42 + c61717f commit 88248fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/contributors/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Header from "@/components/shared/Header";
import { Creators } from "@/components/shared/Creators";
import { GlobeDemo } from "@/components/shared/GlobeCard";
import Footer from "@/components/shared/Footer";
import ScrollToTopButton from "@/components/shared/ScrollUp";

export const metadata: Metadata = {
title: "Blox AI | Contributors",
Expand Down Expand Up @@ -61,6 +62,7 @@ const page = () => {
<GlobeDemo />
</section>
<Footer />
<ScrollToTopButton/>
</>
);
};
Expand Down
2 changes: 2 additions & 0 deletions src/app/review/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Header from "@/components/shared/Header";
import Review from "@/components/shared/customerreviews";
import type { Metadata } from "next";
import Footer from "@/components/shared/Footer";
import ScrollToTopButton from "@/components/shared/ScrollUp";

export const metadata: Metadata = {
title: "Blox AI | Review Us",
Expand All @@ -19,6 +20,7 @@ const page = () => {
<Review />
</div>
<Footer />
<ScrollToTopButton/>
</>
);
};
Expand Down

0 comments on commit 88248fc

Please sign in to comment.