-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Deepak Rajan
authored and
Deepak Rajan
committed
Oct 6, 2024
1 parent
b1de1a5
commit c638f73
Showing
15 changed files
with
260 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import Head from 'next/head'; | ||
import Footer from '../components/Footer'; | ||
|
||
const ProjectPage = ({page_title,title, year_type=[], desc, img_src,banner_height="none", children }) => { | ||
let banner_final_height = "100%"; | ||
if(banner_height !='none'){ | ||
banner_final_height = banner_height; | ||
} | ||
return ( | ||
<> | ||
<Head> | ||
<title>{page_title}</title> | ||
</Head> | ||
<div className='content-item'> | ||
|
||
<div className = "work-header-wrapper"> | ||
<div className='work-header'> | ||
<div className="work-title"> | ||
{title} | ||
</div> | ||
<div className="year"> | ||
{year_type.map((item, index)=>( | ||
<p key={index}>{item}</p> | ||
))} | ||
</div> | ||
|
||
<div className='desc'> | ||
{desc} | ||
</div> | ||
</div> | ||
</div> | ||
<img className='poster' | ||
src={img_src} | ||
style={{height: banner_final_height}} | ||
/> | ||
{/* <div className='work-content-wrapper'> */} | ||
<div className='work-main-content-wrapper'> | ||
{children} | ||
</div> | ||
{/* </div> */} | ||
</div> | ||
<Footer/> | ||
</> | ||
) | ||
} | ||
|
||
export default ProjectPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import ProjectPage from '../components/ProjectPage'; | ||
import Paragraph from '../components/elements/Paragraph'; | ||
import BlogImage from '../components/elements/BlogImage'; | ||
|
||
const AnimShort = () => { | ||
const year_type = [ | ||
"2024", | ||
"ART", | ||
"DEVELOPMENT" | ||
] | ||
|
||
const desc = ` | ||
This short film is in the early stage of production. | ||
If you are willing to join and work with me, please reach out! | ||
` | ||
return ( | ||
<ProjectPage | ||
page_title="Animation Short Film — Deepak Rajan" | ||
title="Animated Short Film" | ||
year_type={year_type} | ||
desc={desc} | ||
img_src="/images/adya.png" | ||
banner_height='700px' | ||
> | ||
|
||
<div className="work-main-content"> | ||
|
||
<h2> | ||
Pre-production | ||
</h2> | ||
<p> | ||
These are some of the concept arts and inital 3d tests I have been doing. | ||
</p> | ||
<BlogImage | ||
src="https://cdna.artstation.com/p/assets/images/images/080/665/830/large/deepak-rajan-img-0230.jpg?1728202000" | ||
content='Adya - Concept art' | ||
/> | ||
<BlogImage | ||
src="https://cdna.artstation.com/p/assets/images/images/080/667/664/large/deepak-rajan-clipboard-2024-10-06-20-25-50.jpg?1728208606" | ||
content='Procedural Tree generation for environment.' | ||
/> | ||
</div> | ||
|
||
|
||
</ProjectPage> | ||
) | ||
} | ||
|
||
export default AnimShort; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
import Head from 'next/head'; | ||
import Link from 'next/link'; | ||
import { GoUnread } from "react-icons/go"; | ||
import { GoLinkExternal } from "react-icons/go"; | ||
import Footer from '@/components/Footer'; | ||
|
||
const Profile = () => { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Deepak Rajan — Profile</title> | ||
</Head> | ||
<div className="content-item"> | ||
Profile | ||
<div className='profile-wrapper'> | ||
<div className='profile-item-wrapper'> | ||
<div className='profile-item bold'>Visual Effects Artist</div> | ||
<div className='profile-item'>Filmmaker & Animator</div> | ||
<div className='profile-item'>Architect</div> | ||
<Link href="mailto:[email protected]"> | ||
<div className='profile-item email'>Email | ||
</div> | ||
<GoUnread /> | ||
</Link> | ||
|
||
<Link href='/resume'> | ||
<div className='profile-item email'>Resume | ||
</div> | ||
<GoLinkExternal /> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,10 @@ | |
color:$text-color; | ||
} | ||
} | ||
|
||
.dark{ | ||
a{ | ||
color:$background-color; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.