Skip to content

Commit

Permalink
Updated to GraphQL
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbytes committed Feb 20, 2023
1 parent 768ffa0 commit dead934
Show file tree
Hide file tree
Showing 75 changed files with 141 additions and 13 deletions.
Empty file modified .gitignore
100755 → 100644
Empty file.
Empty file modified .htaccess
100755 → 100644
Empty file.
Empty file modified LICENSE
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions README.md
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#GoWildThings

GoWildThings is a WordPress blog front end which adapts our ReactSiteTemplate to use the WordPress REST API for post data. Features of the application include:
GoWildThings is a WordPress blog front end which adapts our ReactSiteTemplate to use the WordPress GraphQL for post data. Features of the application include:

1. Upon initiation, the application downloads all of the posts from the blog as an array of objects.
1. The application populates post data either upon entering the galleries page or an individual gallery page.

2. Users can choose to view one of four pages.

Expand All @@ -22,4 +22,4 @@ GoWildThings is a WordPress blog front end which adapts our ReactSiteTemplate to

10. This application offers WordPress content creators the ability to step away from preset theme frameworks. Future work will focus on expanding functionality for content creators to a) directly create post content online, b) edit or modify content directly, and c) manage users online.

This application is currently deployed at wildthings.mdbytes.us
This application is currently deployed at gowildthings.com
Empty file modified wild-things/.gitignore
100755 → 100644
Empty file.
Empty file modified wild-things/README.md
100755 → 100644
Empty file.
Empty file modified wild-things/package-lock.json
100755 → 100644
Empty file.
Empty file modified wild-things/package.json
100755 → 100644
Empty file.
Empty file modified wild-things/public/favicon.ico
100755 → 100644
Empty file.
Empty file modified wild-things/public/images/006.jpg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/index.html
100755 → 100644
Empty file.
Empty file modified wild-things/public/logo-small.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/logo.jpeg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/logo192.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/logo512.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/main-image.jpeg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/public/manifest.json
100755 → 100644
Empty file.
Empty file modified wild-things/public/robots.txt
100755 → 100644
Empty file.
Empty file modified wild-things/src/App.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/AboutPage.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/ContactPage.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/Footer.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/LandingPage.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/NavBar.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/NotFound.js
100755 → 100644
Empty file.
20 changes: 12 additions & 8 deletions wild-things/src/components/PostPage.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,12 @@ const PostPage = () => {
}
);

console.log(response);

response.data.data.post.excerpt = response.data.data.post.excerpt
.replace(/(^"|"$)/g, "")
.replace("[", "")
.replace("]", "");

setPost(response.data.data.post);

console.log("post", post);
};

getPost();
Expand All @@ -72,23 +68,33 @@ const PostPage = () => {
.replace("]", "");
const galleryContent = content.slice(galleryBeginningIndex);
let beginningIndex = 0;
let srcSetBegins = 0;
let startsWithUrl = "";
let url = "";
let remainingGallery = galleryContent;
let images = [];
let elements = [];
let srcSetArray = [];

let portfolioImage = {};
let portfolioElement = {};
let morePhotos = true;
let slideLocation = 0;
let slideLocation = 1;

while (morePhotos) {
if (remainingGallery.indexOf("src=") === -1) {
morePhotos = false;
continue;
}
beginningIndex = remainingGallery.indexOf("src=") + 5;
srcSetBegins = remainingGallery.indexOf("srcset=") + 7;
srcSetArray = remainingGallery
.slice(srcSetBegins, remainingGallery.indexOf("sizes=") - 1)
.trim()
.split(",");
let largeImageSrc = srcSetArray[srcSetArray.length - 1]
.trim()
.split(" ")[0];
startsWithUrl = remainingGallery.slice(beginningIndex);
url = startsWithUrl.slice(0, startsWithUrl.indexOf('"'));
remainingGallery = startsWithUrl.slice(startsWithUrl.indexOf('"'));
Expand All @@ -98,7 +104,7 @@ const PostPage = () => {
};

portfolioElement = {
href: url,
href: largeImageSrc,
type: "image",
};

Expand All @@ -109,8 +115,6 @@ const PostPage = () => {

portfolioDetails.images = images;
portfolioDetails.elements = elements;

console.log(portfolioDetails);
}

if (!post) {
Expand Down
Empty file modified wild-things/src/components/PostsPage.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/PrivacyPage.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/ScrollToTop.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/SeoOptimized.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/about/AboutContent.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/about/AboutIntro.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/post/PortfolioDetail.js
100755 → 100644
Empty file.
2 changes: 0 additions & 2 deletions wild-things/src/components/post/PortfolioItem.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ class PortfolioItem extends Component {
}

displayGallery = (evt) => {
console.dir(evt.target);

let targetButtonClass = evt.target.className;

let startingSlide = 0;
Expand Down
Empty file modified wild-things/src/components/post/PortfolioItems.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/posts/Posts.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/posts/PostsIntro.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/temp.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/testimonials/GetStars.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/testimonials/TestimonialDetail.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/testimonials/TestimonialSlide.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/components/testimonials/TestimonialSlider.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/config/keys.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/config/prod.js
100755 → 100644
Empty file.
126 changes: 126 additions & 0 deletions wild-things/src/content.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
"<p>Adventures into the wild take us to the most extraordinary places. You will find narrative and photo records of our
adventures on our blog. We look forward to your input on the blog articles as we are constantly tracking wildlife
sightings across North America.</p>\n<p>Our first family trip into the wilderness was in 2012.&nbsp; We visited
Rocky Mountain National Park, Grand Teton National Park, Yellowstone National Park, Mount Rushmore, and the
Badlands.&nbsp; In all, the trip was amazing!</p>\n<p>The photo gallery here is the first photo gallery ever put
together for this website.&nbsp; It consists of our adventures across trail ridge road in Rocky Mountain National
Park.&nbsp; The road, constructed in 1921, passes across the northern portion of the Park&#8217;s high
country.&nbsp; The adventure spends almost twenty miles above the tree line reaching altitudes over 12,000 feet.</p>
\n<p>Prior to the road construction, Trail Ridge had been used by Native Americans to cross the mountains between their
home lands in the west and hunting areas on the east side. Arapahoe Indians called the trail located on the ridge as
&#8220;taienbaa&#8221; (&#8220;Where the Children Walked&#8221;) because it was so steep that children could not be
carried, but had to walk. The Ute tribe crossing the mountains at Forest Canyon Pass marked their route with stone
cairns. The present park Ute Trail follows partially that ancient route.</p>\n<p>On the west side, about 1880, a
wagon road was constructed along the Kawuneeche Valley from the town of Grand Lake to the mining camps of Lulu City
and Gaskill. The camps were abandoned after a few years when short-lived mining boom ended and later the road was
used only occasionally by hunters and tourists.</p>\n<p>The pictures here were taken on our adventure, the last week
of June, 2012.&nbsp; We hope you enjoy them, and plan on making your own trip to this amazing natural wonder in the
middle of our great country.</p>\n<p></p>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-1024x683.jpg\" alt=\"\"
class=\"wp-image-1726\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6820-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-1024x683.jpg\" alt=\"\"
class=\"wp-image-1725\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6773-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-1024x683.jpg\" alt=\"\"
class=\"wp-image-1724\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6770-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-1024x683.jpg\" alt=\"\"
class=\"wp-image-1723\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6695-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-1024x683.jpg\" alt=\"\"
class=\"wp-image-1722\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6694-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-1024x683.jpg\" alt=\"\"
class=\"wp-image-1720\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6809-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-1024x683.jpg\" alt=\"\"
class=\"wp-image-1719\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6802-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-1024x683.jpg\" alt=\"\"
class=\"wp-image-1718\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6798-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-1024x683.jpg\" alt=\"\"
class=\"wp-image-1717\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6794-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-1024x683.jpg\" alt=\"\"
class=\"wp-image-1716\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6790-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-1024x683.jpg\" alt=\"\"
class=\"wp-image-1715\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2022/01/IMG_6789-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\"
width=\"1024\" height=\"683\"
src=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-1024x683.jpg\" alt=\"\"
class=\"wp-image-1729\"
srcset=\"https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-1024x683.jpg 1024w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-300x200.jpg 300w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-768x512.jpg 768w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-1536x1024.jpg 1536w,
https://wildthings.wp.mdbytes.us/wp-content/uploads/2016/09/IMG_6743-2048x1365.jpg 2048w\" sizes=\"(max-width:
1024px) 100vw, 1024px\" /></figure>\n"
Empty file modified wild-things/src/context/BlogContext.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/context/UpdatePosts.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/css/fonts/bootstrap-icons.woff
100755 → 100644
Empty file.
Empty file modified wild-things/src/css/fonts/bootstrap-icons.woff2
100755 → 100644
Empty file.
Empty file modified wild-things/src/css/main.css
100755 → 100644
Empty file.
Empty file modified wild-things/src/css/main.css.map
100755 → 100644
Empty file.
Empty file modified wild-things/src/images copy/006.jpg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/src/images/006.jpg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified wild-things/src/index.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/js/glightbox.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/js/glightbox.min.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/js/script-glightbox.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/js/script.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/_custom.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/components/_animations.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/components/_buttons.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/components/_mixins.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/components/_typography.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/main.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_about.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_contact.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_footer.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_home.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_navbar.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_post.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_posts.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/scss/sections/_privacy.scss
100755 → 100644
Empty file.
Empty file modified wild-things/src/tests/App.test.js
100755 → 100644
Empty file.
Empty file modified wild-things/src/tests/setupTests.js
100755 → 100644
Empty file.
Empty file modified wild-things/temp/index.html
100755 → 100644
Empty file.

1 comment on commit dead934

@vercel
Copy link

@vercel vercel bot commented on dead934 Apr 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.