Skip to content

Commit

Permalink
customer added
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak Rajan authored and Deepak Rajan committed Nov 21, 2024
1 parent ceeb73d commit 3fe9393
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ const Header = () => {
<b>DEEPAK</b> RAJAN
</Link>
<div className="menu-wrapper">
<Link href="/" className="menu">
WORKS
<Link href="/store" className="menu">
STORE
</Link>
<Link href="/art" className="menu">
ART
</Link>
<Link href="/store" className="menu">
STORE
<Link href="/" className="menu">
WORKS
</Link>
<Link href="/blog" className="menu">
BLOG
Expand Down
19 changes: 19 additions & 0 deletions pages/dgroom-deformer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const DGroomDeformer = () => {
Features: Guide Generation , Level of detail and Style Blending
</Paragraph>
<br/>
<StudioCustomers/>
<Documentation/>
</div>
</div>
Expand All @@ -28,6 +29,24 @@ const DGroomDeformer = () => {
}
export default DGroomDeformer;

const StudioCustomers = () => {
return (
<div className='studio-customers-wrapper'>
<div className='studio-customers'>
<h1>Studio Customers</h1>
<div className='studio-customers-logos'>
<a href="https://bardel.ca/" target="_blank">
<img src="https://bardel.ca/wp-content/uploads/2022/09/Bardel_logo_Reversed_Green.svg" alt="Bardel Studios"/>
</a>
<a href="https://blackkitestudios.com/" target="_blank">
<img src="/images/blackkit_logo.png" style={{width: '200px'}} alt="Blackkit Studios"/>
</a>
</div>
</div>
</div>
)
}

const WorkHeader = () => {
return (
<>
Expand Down
Binary file added public/images/blackkit_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions style/components/elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@
font-weight: 600;
padding-bottom: 10px;
}

.studio-customers-wrapper{
padding: 2rem 0rem;
.studio-customers-logos{
display: flex;
justify-content: center;
align-items: center;

img{
width: 100px;
margin: 0px 1rem;
}
}
}
}
}
.element-paragraph{
Expand Down

0 comments on commit 3fe9393

Please sign in to comment.