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 6f6a0a2e7c
commit ba4465da59
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
fragment MainLinks on Footer {
main_links {
title
open_in_new_tab
link {
href
title
}
pageConnection {
edges {
node {
__typename
... on AccountPage {
title
url
}
... on LoyaltyPage {
title
url
}
... on ContentPage {
title
url
}
}
}
}
}
}