-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
7 changed files
with
188 additions
and
128 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,57 @@ | ||
--- | ||
import { SITE, SOCIALS } from "@config"; | ||
export interface Props { | ||
title?: string; | ||
author?: string; | ||
description?: string; | ||
ogImage?: string; | ||
} | ||
const { | ||
title = SITE.title, | ||
author = SITE.author, | ||
description = SITE.desc, | ||
ogImage = SITE.ogImage, | ||
} = Astro.props; | ||
--- | ||
|
||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
"@type": "Person", | ||
"name": "David Awad", | ||
"jobTitle": "Lawyer, Investor, Engineer", | ||
"worksFor": { | ||
"@type": "Organization", | ||
"name": "Axethrow" | ||
}, | ||
"url": "https://davidaw.ad", | ||
"image": "/davidawad-banner.jpg", | ||
"sameAs": [ | ||
"https://twitter.com/realdavidawad/", | ||
"https://github.com/davidawad/", | ||
"https://www.linkedin.com/in/davidaawad/" | ||
], | ||
"alumniOf": [ | ||
{ | ||
"@type": "EducationalOrganization", | ||
"name": "Rutgers University" | ||
}, | ||
{ | ||
"@type": "EducationalOrganization", | ||
"name": "Georgia Institute of Technology" | ||
}, | ||
{ | ||
"@type": "EducationalOrganization", | ||
"name": "Northwestern California University School of Law" | ||
} | ||
], | ||
"description": "David Awad, a seasoned electrical engineer turned investor turned lawyer baesd in NYC and DXB, specializes in SaaS Private Equity. This blog offers insights into venture capital, private equity in SaaS as they relate to the law, and software development trends.", | ||
"mainEntityOfPage": { | ||
"@type": "Blog", | ||
"@id": "https://davidaw.ad" | ||
} | ||
}; | ||
</script> |
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.