-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ads (without deleting old ones because they may come back)
- Loading branch information
Showing
3 changed files
with
18 additions
and
24 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,8 +1,8 @@ | ||
const BannerAdvertisements = [ | ||
{ | ||
name: "Prompt College Application and Essay Coaching", | ||
image_src: "/images/ads/prompt_banner.png", | ||
url: "https://www.myprompt.com/", | ||
}, | ||
]; | ||
const BannerAdvertisements: { | ||
name: string; | ||
image_src: string; | ||
url: string; | ||
}[] = [ | ||
|
||
]; | ||
export default BannerAdvertisements; |
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,18 +1,12 @@ | ||
const MixedAdvertisements = [ | ||
{ | ||
name: "Kweller Prep", | ||
image_src: "/images/ads/kweller_prep.png", | ||
url: "https://www.kwellerprep.com/", | ||
}, | ||
{ | ||
name: "College Essay Advisors", | ||
image_src: "/images/ads/college_essay_advisors.png", | ||
url: "http://www.collegeessayadvisors.com/", | ||
}, | ||
{ | ||
name: "College Essay Tutors", | ||
image_src: "/images/ads/college_essay_tutors.png", | ||
url: "http://www.collegeessaytutors.com/", | ||
}, | ||
]; | ||
const MixedAdvertisements: { | ||
name: string; | ||
image_src: string; | ||
url: string; | ||
}[] = [ | ||
{ | ||
name: "Prompt College Application and Essay Coaching", | ||
image_src: "/images/ads/prompt_mixed.jpg", | ||
url: "https://www.myprompt.com/", | ||
}, | ||
]; | ||
export default MixedAdvertisements; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.