feat(SW-187): moved footer fragments to CurrentFooter folder

This commit is contained in:
Pontus Dreij
2024-08-26 13:20:54 +02:00
parent af6dde4a23
commit 9a90fd891d
6 changed files with 5 additions and 5 deletions

View File

@@ -1,27 +0,0 @@
#import "../Image.graphql"
fragment AppDownloads on CurrentFooter {
app_downloads {
title
app_store {
href
imageConnection {
edges {
node {
...Image
}
}
}
}
google_play {
href
imageConnection {
edges {
node {
...Image
}
}
}
}
}
}

View File

@@ -1,11 +0,0 @@
#import "../Image.graphql"
fragment Logo on CurrentFooter {
logoConnection {
edges {
node {
...Image
}
}
}
}

View File

@@ -1,9 +0,0 @@
fragment Navigation on CurrentFooter {
navigation {
links {
href
title
}
title
}
}

View File

@@ -1,17 +0,0 @@
fragment SocialMedia on CurrentFooter {
social_media {
title
facebook {
href
title
}
instagram {
href
title
}
twitter {
href
title
}
}
}

View File

@@ -1,14 +0,0 @@
#import "../Image.graphql"
fragment TripAdvisor on CurrentFooter {
trip_advisor {
logoConnection {
edges {
node {
...Image
}
}
}
title
}
}