-
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
1 parent
d99949f
commit ba73d4b
Showing
11 changed files
with
70 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<script> | ||
import EntityContentWrapper from './src/EntityContentWrapper.svelte'; | ||
export let entityAPIUrl = ''; | ||
console.log(entityAPIUrl); | ||
// should generate a json output that will be passed to entity content wrapper | ||
export let out = {}; | ||
import { queryContent } from '@lib/helpers/sanity.js'; | ||
let type = 'project'; | ||
let slug = 'the-istanbul-chronicle'; | ||
export let out = queryContent( | ||
`*[_type == '${type}' && slug.current == '${slug}']` | ||
); | ||
</script> | ||
|
||
<EntityContentWrapper entityJSON={out} /> |
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
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 was deleted.
Oops, something went wrong.
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,5 @@ | ||
<script> | ||
import FooterContactCard from './src/FooterContactCard.svelte'; | ||
</script> | ||
|
||
<FooterContactCard /> |
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,21 @@ | ||
<script> | ||
import LandingFooterSocialItem from './LandingFooterSocialItem.svelte'; | ||
</script> | ||
|
||
<div | ||
class=" | ||
bg-gray-500 | ||
" | ||
> | ||
<h2> Find us On: </h2> | ||
<div> | ||
<LandingFooterSocialItem | ||
handle="@shape.ist" | ||
href="https://www.instagram.com/shape.ist/" | ||
/> | ||
<LandingFooterSocialItem | ||
handle="@shapeist" | ||
href="https://linkedin.com/company/shapeist/" | ||
/> | ||
</div> | ||
</div> |
11 changes: 11 additions & 0 deletions
11
src/lib/landing/src/footer/src/LandingFooterSocialItem.svelte
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,11 @@ | ||
<script> | ||
export let href = ''; | ||
export let handle = ''; | ||
</script> | ||
|
||
<p> | ||
icon | ||
<a {href} target="_blank"> | ||
{handle} | ||
</a> | ||
</p> |