-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
32 lines (28 loc) · 1.25 KB
/
App.jsx
File metadata and controls
32 lines (28 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React from 'react'
import Tabs from './components/Tabs'
import Gallery from './components/Gallery'
function App() {
return (
<div className="min-h-screen flex items-center justify-center p-4 sm:p-6 lg:p-8">
<div className="w-full max-w-7xl">
<div className="flex flex-col lg:flex-row gap-6 sm:gap-8 lg:gap-12">
{/* Left panel - Gallery */}
<div className="flex-1 lg:flex-[7]">
<Gallery />
{/* Divider line below Gallery - only visible on laptop screens and above */}
<div className="hidden lg:block h-px bg-gradient-to-r from-transparent via-[#2C2D33]/40 to-transparent mt-6"></div>
</div>
{/* Divider line - only visible on laptop screens and above */}
<div className="hidden lg:block w-px bg-gradient-to-b from-transparent via-[#2C2D33]/40 to-transparent"></div>
{/* Right panel - Tabs */}
<div className="flex-1 lg:flex-[5]">
<Tabs />
{/* Divider line below Tabs - only visible on laptop screens and above */}
<div className="hidden lg:block h-px bg-gradient-to-r from-transparent via-[#2C2D33]/40 to-transparent mt-6"></div>
</div>
</div>
</div>
</div>
)
}
export default App