Skip to content

Commit

Permalink
deploy: 1bc39fe
Browse files Browse the repository at this point in the history
  • Loading branch information
yashveer29 committed Jan 12, 2024
1 parent f1f6ddc commit 9541123
Show file tree
Hide file tree
Showing 47 changed files with 1,418 additions and 139 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified -/yashveer29.github.io/fifthtry-website/assets/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/hero-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logos/Apple-dark.png
Binary file added assets/logos/Apple.png
Binary file added assets/logos/Behance-dark.png
Binary file added assets/logos/Behance.png
Binary file added assets/logos/Google-dark.png
Binary file added assets/logos/Google.png
Binary file added assets/logos/awwwards-dark.png
Binary file added assets/logos/awwwards.png
Binary file added assets/logos/dribbble-dark.png
Binary file added assets/logos/dribbble.png
Binary file added assets/skills/art-direction.png
Binary file added assets/skills/product-design.png
Binary file added assets/skills/visual-design.png
Binary file added assets/work/img1.png
Binary file added assets/work/img2.png
Binary file added assets/work/img3.png
Binary file added assets/work/img4.png
Binary file added assets/work/img5.png
Binary file added assets/work/img6.png
Original file line number Diff line number Diff line change
Expand Up @@ -1249,79 +1249,79 @@ fastn_dom.Length = {
Px: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}px`;
return `${fastn_utils.getStaticValue(value)}px`;
});
}
return `${value}px`;
},
Em: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}em`;
return `${fastn_utils.getStaticValue(value)}em`;
});
}
return `${value}em`;
},
Rem: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}rem`;
return `${fastn_utils.getStaticValue(value)}rem`;
});
}
return `${value}rem`;
},
Percent: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}%`;
return `${fastn_utils.getStaticValue(value)}%`;
});
}
return `${value}%`;
},
Calc: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `calc(${value.get()})`;
return `calc(${fastn_utils.getStaticValue(value)})`;
});
}
return `calc(${value})`;
},
Vh: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}vh`;
return `${fastn_utils.getStaticValue(value)}vh`;
});
}
return `${value}vh`;
},
Vw: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}vw`;
return `${fastn_utils.getStaticValue(value)}vw`;
});
}
return `${value}vw`;
},
Dvh: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}dvh`;
return `${fastn_utils.getStaticValue(value)}dvh`;
});
}
return `${value}dvh`;
},
Lvh: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}lvh`;
return `${fastn_utils.getStaticValue(value)}lvh`;
});
}
return `${value}lvh`;
},
Svh: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}svh`;
return `${fastn_utils.getStaticValue(value)}svh`;
});
}
return `${value}svh`;
Expand All @@ -1330,15 +1330,15 @@ fastn_dom.Length = {
Vmin: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}vmin`;
return `${fastn_utils.getStaticValue(value)}vmin`;
});
}
return `${value}vmin`;
},
Vmax: (value) => {
if (value instanceof fastn.mutableClass) {
return fastn.formula([value], function () {
return `${value.get()}vmax`;
return `${fastn_utils.getStaticValue(value)}vmax`;
});
}
return `${value}vmax`;
Expand Down
232 changes: 225 additions & 7 deletions index.ftd
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,31 @@

-- hero:

-- logos:

-- all-skills:

-- all-work:My latest Work

-- end: ds.page










-- component header:

-- ds.section-row:
inset: $ds.spaces.inset-wide.large
outer-background.solid: $ds.colors.background.step-2
spacing: $ds.spaces.horizontal-gap.space-between
flush: full
margin: $ds.spaces.vertical-gap.extra-large
inset: $ds.spaces.inset-wide.large
outer-background.solid: $ds.colors.background.step-2
spacing: $ds.spaces.horizontal-gap.space-between
flush: full
margin: $ds.spaces.vertical-gap.extra-large

-- ftd.image:
src: assets/Logo.png
Expand All @@ -40,6 +53,13 @@ link: /










-- component hero:

-- ds.section-row:
Expand All @@ -51,15 +71,213 @@ spacing: $ds.spaces.vertical-gap.large

-- ds.heading-small: UI/UX | Product design
-- ds.heading-hero: My awesome portfolio
-- ds.heading-tiny: And I made it myself! Yes. usign fifthtry design system
-- ds.heading-tiny: And I made it myself! Yes using fifthtry design system

-- end: ds.column

-- ftd.image:
src: assets/Image.png
src: assets/hero-img.png

-- end: ds.section-row

-- end: hero









-- component logos:

-- ds.section-row:
flush: full
;;border-top: $ds.borders.thin
;;border-bottom: $ds.borders.thin


-- ftd.image:
src: $assets.files.assets.logos.dribbble.png

-- ftd.image:
src: $assets.files.assets.logos.Behance.png

-- ftd.image:
src: $assets.files.assets.logos.Apple.png

-- ftd.image:
src: $assets.files.assets.logos.Google.png

-- ftd.image:
src: $assets.files.assets.logos.awwwards.png


-- end: ds.section-row

-- end: logos








-- component skills:
caption title:
body body:
ftd.image-src image:

-- ds.column:
width.fixed.px: 240
inset: $ds.spaces.inset-square.small

-- ftd.image:
src: $skills.image

-- ds.heading-small: $skills.title
align: center

-- ds.copy-small:
align: center

$skills.body


-- end: ds.column

-- end: skills








-- component all-skills:

-- ds.inline-row:
width: fill-container
spacing: $ds.spaces.horizontal-gap.large
;;margin: $ds.spaces.vertical-gap.exta-large

-- skills: Product Design
image: $assets.files.assets.skills.product-design.png

This is a template Figma file, turned into code using Anima. Learn more at AnimaApp.com

-- skills: Art direction
image: $assets.files.assets.skills.product-design.png

This is a template Figma file, turned into code using Anima. Learn more at AnimaApp.com

-- skills: Visual design
image: $assets.files.assets.skills.product-design.png

This is a template Figma file, turned into code using Anima. Learn more at AnimaApp.com

-- end: ds.inline-row

-- end: all-skills







-- component work:
caption title:
body body:
ftd.image-src image:

-- ds.column:
align-content: left
width.fixed.px: 240
inset: $ds.spaces.inset-square.small
spacing: $ds.spaces.vertical-gap.small

-- ftd.image:
src: $work.image
width: fill-container

-- ds.heading-tiny: $work.title
align: left

-- ds.copy-small:
align: left

$work.body


-- end: ds.column

-- end: work






-- component all-work:
caption title:

-- ds.column:
spacing: $ds.spaces.vertical-gap.medium

-- ds.heading-large: $all-work.title
align: center

-- ds.inline-row:
width: fill-container
spacing: $ds.spaces.horizontal-gap.large
;;margin: $ds.spaces.vertical-gap.exta-large
;;wrap: true

-- work: Free Bird
image: $assets.files.assets.work.img1.png

Lynyrd Skynyrd

-- work: Purple Haze
image: $assets.files.assets.work.img2.png

Jimi Hendrix

-- work: You Really Got Me
image: $assets.files.assets.work.img3.png

The Kinks

-- work: American Girl
image: $assets.files.assets.work.img4.png

Tom Petty

-- work: Whole Lotta Love
image: $assets.files.assets.work.img5.png

Led Zeppelin

-- work: Under Pressure
image: $assets.files.assets.work.img6.png

Queen

-- end: ds.inline-row

-- end: ds.column

-- end: all-work









Loading

0 comments on commit 9541123

Please sign in to comment.