Skip to content

Commit

Permalink
#d2p code refactored
Browse files Browse the repository at this point in the history
  • Loading branch information
Bornak Paul committed Jun 12, 2024
1 parent 0fea83e commit 415e7ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions app/blogs/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import BlogDetailsScreen from "@/components/BlogsDetailsScreen";

export default function BlogsHome() {
return (
<BlogDetailsScreen/>
);
}
5 changes: 2 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ import BlogDetailsScreen from "@/components/BlogsDetailsScreen";
export default function Home() {
return (
<>
<BlogDetailsScreen/>
{/* <LandingScreen/>
<LandingScreen/>
<Product/>
<Details/>
<CertifyProduct/>
<PhysicalPresence/>
<Faq/>
<Promotion/> */}
<Promotion/>
</>
);
}
2 changes: 1 addition & 1 deletion constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export const NAV_LINKS = [
{ href: '/', key: 'home', label: 'Home' },
{ href: '/', key: 'pricing', label: 'Pricing' },
{ href: '/blogs-home', key: 'blogs-home ', label: 'Blogs ' },
{ href: '/blogs', key: 'blogs-home ', label: 'Blogs ' },
{ href: '/', key: 'contact_us', label: 'Contact Us' },
];

Expand Down

0 comments on commit 415e7ca

Please sign in to comment.