Skip to content

Commit

Permalink
Add contact bar on view page
Browse files Browse the repository at this point in the history
  • Loading branch information
POL6463 committed Jun 20, 2024
1 parent 12c5941 commit 14768c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gitlio/app/portfolio/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { useRouter } from 'next/navigation';
import Image from 'next/image';
import { FaSignInAlt } from 'react-icons/fa';
import React, { useEffect, useState } from 'react';
import TopBlogBar from '@/app/editor/_components/TopBlogBar';

const EditorLayout: React.FC<{ children: React.ReactNode }> = ({
children,
Expand Down Expand Up @@ -54,6 +55,7 @@ const EditorLayout: React.FC<{ children: React.ReactNode }> = ({
</div>
</div>
<div className="flex-grow flex overflow-hidden">
<TopBlogBar />
<div className="flex flex-col flex-grow mt-24 overflow-auto justify-center items-center">
<div className="flex mb-16">{children}</div>
</div>
Expand Down

0 comments on commit 14768c4

Please sign in to comment.